patch-2.1.68 linux/include/linux/tcp.h
Next file: linux/include/linux/time.h
Previous file: linux/include/linux/sysctl.h
Back to the patch index
Back to the overall index
- Lines: 19
- Date:
Sun Nov 30 14:11:18 1997
- Orig file:
v2.1.67/linux/include/linux/tcp.h
- Orig date:
Mon Jul 7 16:02:45 1997
diff -u --recursive --new-file v2.1.67/linux/include/linux/tcp.h linux/include/linux/tcp.h
@@ -68,4 +68,18 @@
TCP_CLOSING /* now a valid state */
};
+enum {
+ TCPF_ESTABLISHED = (1 << 1),
+ TCPF_SYN_SENT = (1 << 2),
+ TCPF_SYN_RECV = (1 << 3),
+ TCPF_FIN_WAIT1 = (1 << 4),
+ TCPF_FIN_WAIT2 = (1 << 5),
+ TCPF_TIME_WAIT = (1 << 6),
+ TCPF_CLOSE = (1 << 7),
+ TCPF_CLOSE_WAIT = (1 << 8),
+ TCPF_LAST_ACK = (1 << 9),
+ TCPF_LISTEN = (1 << 10),
+ TCPF_CLOSING = (1 << 11)
+};
+
#endif /* _LINUX_TCP_H */
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov