Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/teigland...
[cascardo/linux.git] / include / linux / netfilter / xt_CT.h
1 #ifndef _XT_CT_H
2 #define _XT_CT_H
3
4 #include <linux/types.h>
5
6 #define XT_CT_NOTRACK           0x1
7 #define XT_CT_USERSPACE_HELPER  0x2
8
9 struct xt_ct_target_info {
10         __u16 flags;
11         __u16 zone;
12         __u32 ct_events;
13         __u32 exp_events;
14         char helper[16];
15
16         /* Used internally by the kernel */
17         struct nf_conn  *ct __attribute__((aligned(8)));
18 };
19
20 #endif /* _XT_CT_H */