From dcec8a13bf565e47942a1751a9cec21bec5648fe Mon Sep 17 00:00:00 2001 From: Ralf Baechle Date: Thu, 7 May 1998 02:55:41 +0000 Subject: o Merge with Linux 2.1.99. o Fix ancient bug in the ELF loader making ldd crash. o Fix ancient bug in the keyboard code for SGI, SNI and Jazz. --- include/linux/tcp.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'include/linux/tcp.h') 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), -- cgit v1.2.3