MOXA linux-2.6.x / linux-2.6.19-uc1 from UC-7110-LX-BOOTLOADER-1.9_VERSION-4.2.tgz
[linux-2.6.19-moxart.git] / include / linux / netfilter / xt_conntrack.h
blob4c2d9945ca54a50034d488ce8e472e404bafed9b
1 /* Header file for kernel module to match connection tracking information.
2 * GPL (C) 2001 Marc Boucher (marc@mbsi.ca).
3 */
5 #ifndef _XT_CONNTRACK_H
6 #define _XT_CONNTRACK_H
8 #include <linux/netfilter/nf_conntrack_tuple_common.h>
9 #include <linux/in.h>
11 #define XT_CONNTRACK_STATE_BIT(ctinfo) (1 << ((ctinfo)%IP_CT_IS_REPLY+1))
12 #define XT_CONNTRACK_STATE_INVALID (1 << 0)
14 #define XT_CONNTRACK_STATE_SNAT (1 << (IP_CT_NUMBER + 1))
15 #define XT_CONNTRACK_STATE_DNAT (1 << (IP_CT_NUMBER + 2))
16 #define XT_CONNTRACK_STATE_UNTRACKED (1 << (IP_CT_NUMBER + 3))
18 /* flags, invflags: */
19 #define XT_CONNTRACK_STATE 0x01
20 #define XT_CONNTRACK_PROTO 0x02
21 #define XT_CONNTRACK_ORIGSRC 0x04
22 #define XT_CONNTRACK_ORIGDST 0x08
23 #define XT_CONNTRACK_REPLSRC 0x10
24 #define XT_CONNTRACK_REPLDST 0x20
25 #define XT_CONNTRACK_STATUS 0x40
26 #define XT_CONNTRACK_EXPIRES 0x80
28 /* This is exposed to userspace, so remains frozen in time. */
29 struct ip_conntrack_old_tuple
31 struct {
32 __u32 ip;
33 union {
34 __u16 all;
35 } u;
36 } src;
38 struct {
39 __u32 ip;
40 union {
41 __u16 all;
42 } u;
44 /* The protocol. */
45 __u16 protonum;
46 } dst;
49 struct xt_conntrack_info
51 unsigned int statemask, statusmask;
53 struct ip_conntrack_old_tuple tuple[IP_CT_DIR_MAX];
54 struct in_addr sipmsk[IP_CT_DIR_MAX], dipmsk[IP_CT_DIR_MAX];
56 unsigned long expires_min, expires_max;
58 /* Flags word */
59 u_int8_t flags;
60 /* Inverse flags */
61 u_int8_t invflags;
63 #endif /*_XT_CONNTRACK_H*/