xref: /linux/include/linux/netfilter/nf_conntrack_sane.h (revision 91ec2035134982b98fab0609a9fd8480e8217dc1)
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _NF_CONNTRACK_SANE_H
3 #define _NF_CONNTRACK_SANE_H
4 /* SANE tracking. */
5 
6 enum sane_state {
7 	SANE_STATE_NORMAL,
8 	SANE_STATE_START_REQUESTED,
9 };
10 
11 /* This structure exists only once per master */
12 struct nf_ct_sane_master {
13 	enum sane_state state;
14 };
15 
16 #endif /* _NF_CONNTRACK_SANE_H */
17