aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/netfilter/nf_conntrack_bridge.h
blob: 3be1642e04f76cf019ae02a9cd887fb8586b03d5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef NF_CONNTRACK_BRIDGE_
#define NF_CONNTRACK_BRIDGE_

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