Commit e460f82e authored by shemminger's avatar shemminger

Include file update

parent 27356a5e
2006-03-10 shemminger <shemminger@osdl.org>
* Update to 2.6.16 headers
* Add fake version of include/linux/socket.h to fix warnings
2006-01-12 Patrick McHardy <kaber@trash.net> 2006-01-12 Patrick McHardy <kaber@trash.net>
* Handle DCCP in ipxfrm.c to allow using port numbers in the selector. * Handle DCCP in ipxfrm.c to allow using port numbers in the selector.
......
#include <sys/socket.h>
...@@ -31,4 +31,20 @@ enum { ...@@ -31,4 +31,20 @@ enum {
#define TCP_STATE_MASK 0xF #define TCP_STATE_MASK 0xF
#define TCP_ACTION_FIN (1 << 7)
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_STATES_H */ #endif /* _LINUX_TCP_STATES_H */
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment