tcp_states.h 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /*
  2. * INET An implementation of the TCP/IP protocol suite for the LINUX
  3. * operating system. INET is implemented using the BSD Socket
  4. * interface as the means of communication with the user level.
  5. *
  6. * Definitions for the TCP protocol sk_state field.
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License
  10. * as published by the Free Software Foundation; either version
  11. * 2 of the License, or (at your option) any later version.
  12. */
  13. #ifndef _LINUX_TCP_STATES_H
  14. #define _LINUX_TCP_STATES_H
  15. enum {
  16. TCP_ESTABLISHED = 1,
  17. TCP_SYN_SENT,
  18. TCP_SYN_RECV,
  19. TCP_FIN_WAIT1,
  20. TCP_FIN_WAIT2,
  21. TCP_TIME_WAIT,
  22. TCP_CLOSE,
  23. TCP_CLOSE_WAIT,
  24. TCP_LAST_ACK,
  25. TCP_LISTEN,
  26. TCP_CLOSING, /* Now a valid state */
  27. TCP_NEW_SYN_RECV,
  28. TCP_MAX_STATES /* Leave at the end! */
  29. };
  30. #define TCP_STATE_MASK 0xF
  31. #define TCP_ACTION_FIN (1 << 7)
  32. enum {
  33. TCPF_ESTABLISHED = (1 << 1),
  34. TCPF_SYN_SENT = (1 << 2),
  35. TCPF_SYN_RECV = (1 << 3),
  36. TCPF_FIN_WAIT1 = (1 << 4),
  37. TCPF_FIN_WAIT2 = (1 << 5),
  38. TCPF_TIME_WAIT = (1 << 6),
  39. TCPF_CLOSE = (1 << 7),
  40. TCPF_CLOSE_WAIT = (1 << 8),
  41. TCPF_LAST_ACK = (1 << 9),
  42. TCPF_LISTEN = (1 << 10),
  43. TCPF_CLOSING = (1 << 11),
  44. TCPF_NEW_SYN_RECV = (1 << 12),
  45. };
  46. #endif /* _LINUX_TCP_STATES_H */