projects
/
unionfs-2.6.38.y.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fbe2454
)
NETFILTER: tcp conntrack: fix IP_CT_TCP_FLAG_CLOSE_INIT value
author
Patrick McHardy
<kaber@trash.net>
Sat, 24 Mar 2007 20:22:57 +0000
(21:22 +0100)
committer
Adrian Bunk
<bunk@stusta.de>
Sat, 24 Mar 2007 20:22:57 +0000
(21:22 +0100)
IP_CT_TCP_FLAG_CLOSE_INIT is a flag and should have a value of 0x4 instead
of 0x3, which is IP_CT_TCP_FLAG_WINDOW_SCALE | IP_CT_TCP_FLAG_SACK_PERM.
Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: Adrian Bunk <bunk@stusta.de>
include/linux/netfilter/nf_conntrack_tcp.h
patch
|
blob
|
history
diff --git
a/include/linux/netfilter/nf_conntrack_tcp.h
b/include/linux/netfilter/nf_conntrack_tcp.h
index b2feeffde38499a869714c9373c8bf2c3cef92de..b0f6789e22fbb1beef283054ac175a96b7e7f250 100644
(file)
--- a/
include/linux/netfilter/nf_conntrack_tcp.h
+++ b/
include/linux/netfilter/nf_conntrack_tcp.h
@@
-25,7
+25,7
@@
enum tcp_conntrack {
#define IP_CT_TCP_FLAG_SACK_PERM 0x02
/* This sender sent FIN first */
-#define IP_CT_TCP_FLAG_CLOSE_INIT 0x0
3
+#define IP_CT_TCP_FLAG_CLOSE_INIT 0x0
4
#ifdef __KERNEL__