Linux-libre 5.4.48-gnu
[librecmc/linux-libre.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 #define SANE_PORT       6566
7
8 enum sane_state {
9         SANE_STATE_NORMAL,
10         SANE_STATE_START_REQUESTED,
11 };
12
13 /* This structure exists only once per master */
14 struct nf_ct_sane_master {
15         enum sane_state state;
16 };
17
18 #endif /* _NF_CONNTRACK_SANE_H */