Warning: This file is not a C or C++ file. It does not have highlighting.

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

Warning: This file is not a C or C++ file. It does not have highlighting.

source code of linux/include/net/netfilter/nf_conntrack_bridge.h