diff options
Diffstat (limited to 'include/linux/tcp.h')
-rw-r--r-- | include/linux/tcp.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/include/linux/tcp.h b/include/linux/tcp.h index 594b3108a..eae70d918 100644 --- a/include/linux/tcp.h +++ b/include/linux/tcp.h @@ -65,9 +65,14 @@ enum { TCP_CLOSE_WAIT, TCP_LAST_ACK, TCP_LISTEN, - TCP_CLOSING /* now a valid state */ + TCP_CLOSING, /* now a valid state */ + + TCP_MAX_STATES /* Leave at the end! */ }; +#define TCP_STATE_MASK 0xF +#define TCP_ACTION_FIN 1 << 7 + enum { TCPF_ESTABLISHED = (1 << 1), TCPF_SYN_SENT = (1 << 2), |