search for: ip_conntrack_tcp

Displaying 2 results from an estimated 2 matches for "ip_conntrack_tcp".

Did you mean: ip_conntrack_ftp
2003 Jul 16
0
[Bug 110] New: TCP connection tracking
...Component: connection tracking AssignedTo: laforge@netfilter.org ReportedBy: giffordj@linkline.com CC: netfilter-buglog@lists.netfilter.org When compiling IPTables with the tcp-window-tracking patch applied, I receive the following error message from GCC 3.3 ip_conntrack_tcp.h:48: warning: `struct ip_conntrack' declared inside parameter list ip_conntrack_tcp.h:48: warning: its scope is only this definition or declaration, which is probably not what you want ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching...
2003 Aug 02
0
[SECURITY] Netfilter Security Advisory: Conntrack list_del() DoS
...ack should never be early-expired. */ IPS_ASSURED_BIT =3D 2, IPS_ASSURED =3D (1 << IPS_ASSURED_BIT), + + /* Connection is confirmed: originating packet has left box */ + IPS_CONFIRMED_BIT =3D 3, + IPS_CONFIRMED =3D (1 << IPS_CONFIRMED_BIT), }; =20 #include <linux/netfilter_ipv4/ip_conntrack_tcp.h> @@ -159,7 +164,7 @@ struct ip_conntrack_tuple_hash tuplehash[IP_CT_DIR_MAX]; =20 /* Have we seen traffic both ways yet? (bitset) */ - volatile unsigned long status; + unsigned long status; =20 /* Timer function; drops refcnt when it goes off. */ struct timer_list timeout; @@ -254,7 +2...