1 #ifndef NF_CONNTRACK_BRIDGE_ 2 #define NF_CONNTRACK_BRIDGE_ 3 4 #include <linux/module.h> 5 #include <linux/types.h> 6 #include <uapi/linux/if_ether.h> 7 8 struct nf_hook_ops; 9 10 struct nf_ct_bridge_info { 11 struct nf_hook_ops *ops; 12 unsigned int ops_size; 13 struct module *me; 14 }; 15 16 void nf_ct_bridge_register(struct nf_ct_bridge_info *info); 17 void nf_ct_bridge_unregister(struct nf_ct_bridge_info *info); 18 19 #endif 20