diff options
| author | David S. Miller <davem@sunset.davemloft.net> | 2005-03-09 20:06:29 -0800 |
|---|---|---|
| committer | David S. Miller <davem@sunset.davemloft.net> | 2005-03-09 20:06:29 -0800 |
| commit | 8de08f908adf692f748319c289eff5df9df0b5ea (patch) | |
| tree | a107c36c4ca0919db788cb2927b7d006eb8dfcdf /include/linux | |
| parent | 0f634eb32d3a5cba9d3411f23974962bb8f94bdd (diff) | |
| parent | b20f3c6cba4f282f380bed2241185b7a230542be (diff) | |
Merge bk://212.42.230.204:994/nf-2.6
into sunset.davemloft.net:/home/davem/src/BK/net-2.6
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/netfilter_ipv4/ip_conntrack_tcp.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/linux/netfilter_ipv4/ip_conntrack_tcp.h b/include/linux/netfilter_ipv4/ip_conntrack_tcp.h index 76c2a19700dc..16da044d97a7 100644 --- a/include/linux/netfilter_ipv4/ip_conntrack_tcp.h +++ b/include/linux/netfilter_ipv4/ip_conntrack_tcp.h @@ -23,13 +23,16 @@ enum tcp_conntrack { /* SACK is permitted by the sender */ #define IP_CT_TCP_FLAG_SACK_PERM 0x02 +/* This sender sent FIN first */ +#define IP_CT_TCP_FLAG_CLOSE_INIT 0x03 + struct ip_ct_tcp_state { u_int32_t td_end; /* max of seq + len */ u_int32_t td_maxend; /* max of ack + max(win, 1) */ u_int32_t td_maxwin; /* max(win) */ u_int8_t td_scale; /* window scale factor */ u_int8_t loose; /* used when connection picked up from the middle */ - u_int8_t flags; /* per direction state flags */ + u_int8_t flags; /* per direction options */ }; struct ip_ct_tcp |
