]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blob - include/linux/netfilter/nf_conntrack_sane.h
Merge tag 'devicetree-for-linus' of git://git.secretlab.ca/git/linux
[mirror_ubuntu-bionic-kernel.git] / include / linux / netfilter / nf_conntrack_sane.h
1 #ifndef _NF_CONNTRACK_SANE_H
2 #define _NF_CONNTRACK_SANE_H
3 /* SANE tracking. */
4
5 #ifdef __KERNEL__
6
7 #define SANE_PORT 6566
8
9 enum sane_state {
10 SANE_STATE_NORMAL,
11 SANE_STATE_START_REQUESTED,
12 };
13
14 /* This structure exists only once per master */
15 struct nf_ct_sane_master {
16 enum sane_state state;
17 };
18
19 #endif /* __KERNEL__ */
20
21 #endif /* _NF_CONNTRACK_SANE_H */