vserver 2.0 rc7
[linux-2.6.git] / include / linux / netfilter_ipv4 / ip_conntrack_tcp.h
index 76c2a19..16da044 100644 (file)
@@ -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