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