Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
nf_conntrack_sane.h
Go to the documentation of this file.
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 */