diff options
author | Jan Engelhardt <jengelh@medozas.de> | 2009-06-12 16:56:14 (GMT) |
---|---|---|
committer | Jan Engelhardt <jengelh@medozas.de> | 2009-08-10 11:09:44 (GMT) |
commit | 9e05ec4b1804a1ba51f61fe169aef9b86edcd3f7 (patch) | |
tree | f8a356cfab524538d8de0da2f39d3b0b8e148b5b /include | |
parent | 84899a2b9adaf6c2e20d198d7c24562ce6b391d8 (diff) | |
download | linux-fsl-qoriq-9e05ec4b1804a1ba51f61fe169aef9b86edcd3f7.tar.xz |
netfilter: xtables: remove xt_conntrack v0
Superseded by xt_conntrack v1 (v2.6.24-2921-g64eb12f).
Signed-off-by: Jan Engelhardt <jengelh@medozas.de>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/netfilter/xt_conntrack.h | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/include/linux/netfilter/xt_conntrack.h b/include/linux/netfilter/xt_conntrack.h index 7ae0533..54f47a2 100644 --- a/include/linux/netfilter/xt_conntrack.h +++ b/include/linux/netfilter/xt_conntrack.h @@ -32,42 +32,6 @@ enum { XT_CONNTRACK_DIRECTION = 1 << 12, }; -/* This is exposed to userspace, so remains frozen in time. */ -struct ip_conntrack_old_tuple -{ - struct { - __be32 ip; - union { - __u16 all; - } u; - } src; - - struct { - __be32 ip; - union { - __u16 all; - } u; - - /* The protocol. */ - __u16 protonum; - } dst; -}; - -struct xt_conntrack_info -{ - unsigned int statemask, statusmask; - - struct ip_conntrack_old_tuple tuple[IP_CT_DIR_MAX]; - struct in_addr sipmsk[IP_CT_DIR_MAX], dipmsk[IP_CT_DIR_MAX]; - - unsigned long expires_min, expires_max; - - /* Flags word */ - __u8 flags; - /* Inverse flags */ - __u8 invflags; -}; - struct xt_conntrack_mtinfo1 { union nf_inet_addr origsrc_addr, origsrc_mask; union nf_inet_addr origdst_addr, origdst_mask; |