Linux Audio

Check our new training course

Loading...
v3.15
 
 1#ifndef __NETNS_NETFILTER_H
 2#define __NETNS_NETFILTER_H
 3
 4#include <linux/proc_fs.h>
 5#include <linux/netfilter.h>
 6
 
 7struct nf_logger;
 
 8
 9struct netns_nf {
10#if defined CONFIG_PROC_FS
11	struct proc_dir_entry *proc_netfilter;
12#endif
 
13	const struct nf_logger __rcu *nf_loggers[NFPROTO_NUMPROTO];
14#ifdef CONFIG_SYSCTL
15	struct ctl_table_header *nf_log_dir_header;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16#endif
17};
18#endif