Home | History | Annotate | Download | only in netfilter
      1 /****************************************************************************
      2  ****************************************************************************
      3  ***
      4  ***   This header was automatically generated from a Linux kernel header
      5  ***   of the same name, to make information necessary for userspace to
      6  ***   call into the kernel available to libc.  It contains only constants,
      7  ***   structures, and macros generated from the original header, and thus,
      8  ***   contains no copyrightable information.
      9  ***
     10  ****************************************************************************
     11  ****************************************************************************/
     12 #ifndef _NF_CONNTRACK_TCP_H
     13 #define _NF_CONNTRACK_TCP_H
     14 
     15 enum tcp_conntrack {
     16  TCP_CONNTRACK_NONE,
     17  TCP_CONNTRACK_SYN_SENT,
     18  TCP_CONNTRACK_SYN_RECV,
     19  TCP_CONNTRACK_ESTABLISHED,
     20  TCP_CONNTRACK_FIN_WAIT,
     21  TCP_CONNTRACK_CLOSE_WAIT,
     22  TCP_CONNTRACK_LAST_ACK,
     23  TCP_CONNTRACK_TIME_WAIT,
     24  TCP_CONNTRACK_CLOSE,
     25  TCP_CONNTRACK_LISTEN,
     26  TCP_CONNTRACK_MAX,
     27  TCP_CONNTRACK_IGNORE
     28 };
     29 
     30 #define IP_CT_TCP_FLAG_WINDOW_SCALE 0x01
     31 
     32 #define IP_CT_TCP_FLAG_SACK_PERM 0x02
     33 
     34 #define IP_CT_TCP_FLAG_CLOSE_INIT 0x03
     35 
     36 #endif
     37