Merge remote-tracking branches 'asoc/topic/ac97', 'asoc/topic/ac97-mfd', 'asoc/topic...
[sfrench/cifs-2.6.git] / include / linux / netfilter / nf_conntrack_sane.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _NF_CONNTRACK_SANE_H
3 #define _NF_CONNTRACK_SANE_H
4 /* SANE tracking. */
5
6 #ifdef __KERNEL__
7
8 #define SANE_PORT       6566
9
10 enum sane_state {
11         SANE_STATE_NORMAL,
12         SANE_STATE_START_REQUESTED,
13 };
14
15 /* This structure exists only once per master */
16 struct nf_ct_sane_master {
17         enum sane_state state;
18 };
19
20 #endif /* __KERNEL__ */
21
22 #endif /* _NF_CONNTRACK_SANE_H */