• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/toolchains/hndtools-arm-linux-2.6.36-uclibc-4.5.3/usr/include/linux/netfilter/
1#ifndef _XT_CT_H
2#define _XT_CT_H
3
4#define XT_CT_NOTRACK	0x1
5
6struct xt_ct_target_info {
7	u_int16_t	flags;
8	u_int16_t	zone;
9	u_int32_t	ct_events;
10	u_int32_t	exp_events;
11	char		helper[16];
12
13	/* Used internally by the kernel */
14	struct nf_conn	*ct __attribute__((aligned(8)));
15};
16
17#endif /* _XT_CT_H */
18