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 8struct nf_hook_ops; 9 10struct nf_ct_bridge_info { 11 struct nf_hook_ops *ops; 12 unsigned int ops_size; 13 struct module *me; 14}; 15 16void nf_ct_bridge_register(struct nf_ct_bridge_info *info); 17void nf_ct_bridge_unregister(struct nf_ct_bridge_info *info); 18 19#endif 20