diff options
author | Pablo Neira Ayuso <pablo@netfilter.org> | 2009-12-29 20:02:55 +0100 |
---|---|---|
committer | Pablo Neira Ayuso <pablo@netfilter.org> | 2010-02-11 12:06:37 +0100 |
commit | 56817d1c0cc30bcd65c56c2f73634b256603cc4d (patch) | |
tree | 4c37a3d1416f0d17658f37502fc5a9b15f68c65e /include/network.h | |
parent | 73da80df0c3cf4175662b3da4dfbd3574d34f96a (diff) | |
download | conntrack-tools-56817d1c0cc30bcd65c56c2f73634b256603cc4d.tar.gz conntrack-tools-56817d1c0cc30bcd65c56c2f73634b256603cc4d.zip |
conntrackd: add support for TCP window scale factor synchronization
This patch adds a new option TCPWindowTracking that allows not
to disable TCP window tracking as it occurs by default.
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'include/network.h')
-rw-r--r-- | include/network.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/network.h b/include/network.h index 70812b1..567317b 100644 --- a/include/network.h +++ b/include/network.h @@ -220,6 +220,8 @@ enum nta_attr { NTA_ICMP_TYPE, /* uint8_t */ NTA_ICMP_CODE, /* uint8_t */ NTA_ICMP_ID, /* uint16_t */ + NTA_TCP_WSCALE_ORIG, /* uint8_t */ + NTA_TCP_WSCALE_REPL, /* uint8_t */ NTA_MAX }; |