linux/net/netfilter/nf_flow_table_procfs.c

// SPDX-License-Identifier: GPL-2.0-only
#include <linux/kernel.h>
#include <linux/proc_fs.h>
#include <net/netfilter/nf_flow_table.h>

static void *nf_flow_table_cpu_seq_start(struct seq_file *seq, loff_t *pos)
{}

static void *nf_flow_table_cpu_seq_next(struct seq_file *seq, void *v, loff_t *pos)
{}

static void nf_flow_table_cpu_seq_stop(struct seq_file *seq, void *v)
{}

static int nf_flow_table_cpu_seq_show(struct seq_file *seq, void *v)
{}

static const struct seq_operations nf_flow_table_cpu_seq_ops =;

int nf_flow_table_init_proc(struct net *net)
{}

void nf_flow_table_fini_proc(struct net *net)
{}