tcp.h 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246
  1. /*
  2. * Copyright (c) 1982, 1986, 1993
  3. * The Regents of the University of California. All rights reserved.
  4. *
  5. * Redistribution and use in source and binary forms, with or without
  6. * modification, are permitted provided that the following conditions
  7. * are met:
  8. * 1. Redistributions of source code must retain the above copyright
  9. * notice, this list of conditions and the following disclaimer.
  10. * 2. Redistributions in binary form must reproduce the above copyright
  11. * notice, this list of conditions and the following disclaimer in the
  12. * documentation and/or other materials provided with the distribution.
  13. * 4. Neither the name of the University nor the names of its contributors
  14. * may be used to endorse or promote products derived from this software
  15. * without specific prior written permission.
  16. *
  17. * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  18. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  19. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  20. * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  21. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  22. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  23. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  24. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  25. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  26. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  27. * SUCH DAMAGE.
  28. *
  29. * @(#)tcp.h 8.1 (Berkeley) 6/10/93
  30. */
  31. #ifndef _NETINET_TCP_H
  32. #define _NETINET_TCP_H 1
  33. #include <features.h>
  34. /*
  35. * User-settable options (used with setsockopt).
  36. */
  37. #define TCP_NODELAY 1 /* Don't delay send to coalesce packets */
  38. #define TCP_MAXSEG 2 /* Set maximum segment size */
  39. #define TCP_CORK 3 /* Control sending of partial frames */
  40. #define TCP_KEEPIDLE 4 /* Start keeplives after this period */
  41. #define TCP_KEEPINTVL 5 /* Interval between keepalives */
  42. #define TCP_KEEPCNT 6 /* Number of keepalives before death */
  43. #define TCP_SYNCNT 7 /* Number of SYN retransmits */
  44. #define TCP_LINGER2 8 /* Life time of orphaned FIN-WAIT-2 state */
  45. #define TCP_DEFER_ACCEPT 9 /* Wake up listener only when data arrive */
  46. #define TCP_WINDOW_CLAMP 10 /* Bound advertised window */
  47. #define TCP_INFO 11 /* Information about this connection. */
  48. #define TCP_QUICKACK 12 /* Bock/reenable quick ACKs. */
  49. #define TCP_CONGESTION 13 /* Congestion control algorithm. */
  50. #define TCP_MD5SIG 14 /* TCP MD5 Signature (RFC2385) */
  51. #ifdef __USE_MISC
  52. # include <sys/types.h>
  53. # include <sys/socket.h>
  54. # ifdef __FAVOR_BSD
  55. typedef u_int32_t tcp_seq;
  56. /*
  57. * TCP header.
  58. * Per RFC 793, September, 1981.
  59. */
  60. struct tcphdr
  61. {
  62. u_int16_t th_sport; /* source port */
  63. u_int16_t th_dport; /* destination port */
  64. tcp_seq th_seq; /* sequence number */
  65. tcp_seq th_ack; /* acknowledgement number */
  66. # if __BYTE_ORDER == __LITTLE_ENDIAN
  67. u_int8_t th_x2:4; /* (unused) */
  68. u_int8_t th_off:4; /* data offset */
  69. # endif
  70. # if __BYTE_ORDER == __BIG_ENDIAN
  71. u_int8_t th_off:4; /* data offset */
  72. u_int8_t th_x2:4; /* (unused) */
  73. # endif
  74. u_int8_t th_flags;
  75. # define TH_FIN 0x01
  76. # define TH_SYN 0x02
  77. # define TH_RST 0x04
  78. # define TH_PUSH 0x08
  79. # define TH_ACK 0x10
  80. # define TH_URG 0x20
  81. u_int16_t th_win; /* window */
  82. u_int16_t th_sum; /* checksum */
  83. u_int16_t th_urp; /* urgent pointer */
  84. };
  85. # else /* !__FAVOR_BSD */
  86. struct tcphdr
  87. {
  88. u_int16_t source;
  89. u_int16_t dest;
  90. u_int32_t seq;
  91. u_int32_t ack_seq;
  92. # if __BYTE_ORDER == __LITTLE_ENDIAN
  93. u_int16_t res1:4;
  94. u_int16_t doff:4;
  95. u_int16_t fin:1;
  96. u_int16_t syn:1;
  97. u_int16_t rst:1;
  98. u_int16_t psh:1;
  99. u_int16_t ack:1;
  100. u_int16_t urg:1;
  101. u_int16_t res2:2;
  102. # elif __BYTE_ORDER == __BIG_ENDIAN
  103. u_int16_t doff:4;
  104. u_int16_t res1:4;
  105. u_int16_t res2:2;
  106. u_int16_t urg:1;
  107. u_int16_t ack:1;
  108. u_int16_t psh:1;
  109. u_int16_t rst:1;
  110. u_int16_t syn:1;
  111. u_int16_t fin:1;
  112. # else
  113. # error "Adjust your <bits/endian.h> defines"
  114. # endif
  115. u_int16_t window;
  116. u_int16_t check;
  117. u_int16_t urg_ptr;
  118. };
  119. # endif /* __FAVOR_BSD */
  120. enum
  121. {
  122. TCP_ESTABLISHED = 1,
  123. TCP_SYN_SENT,
  124. TCP_SYN_RECV,
  125. TCP_FIN_WAIT1,
  126. TCP_FIN_WAIT2,
  127. TCP_TIME_WAIT,
  128. TCP_CLOSE,
  129. TCP_CLOSE_WAIT,
  130. TCP_LAST_ACK,
  131. TCP_LISTEN,
  132. TCP_CLOSING /* now a valid state */
  133. };
  134. # define TCPOPT_EOL 0
  135. # define TCPOPT_NOP 1
  136. # define TCPOPT_MAXSEG 2
  137. # define TCPOLEN_MAXSEG 4
  138. # define TCPOPT_WINDOW 3
  139. # define TCPOLEN_WINDOW 3
  140. # define TCPOPT_SACK_PERMITTED 4 /* Experimental */
  141. # define TCPOLEN_SACK_PERMITTED 2
  142. # define TCPOPT_SACK 5 /* Experimental */
  143. # define TCPOPT_TIMESTAMP 8
  144. # define TCPOLEN_TIMESTAMP 10
  145. # define TCPOLEN_TSTAMP_APPA (TCPOLEN_TIMESTAMP+2) /* appendix A */
  146. # define TCPOPT_TSTAMP_HDR \
  147. (TCPOPT_NOP<<24|TCPOPT_NOP<<16|TCPOPT_TIMESTAMP<<8|TCPOLEN_TIMESTAMP)
  148. /*
  149. * Default maximum segment size for TCP.
  150. * With an IP MSS of 576, this is 536,
  151. * but 512 is probably more convenient.
  152. * This should be defined as MIN(512, IP_MSS - sizeof (struct tcpiphdr)).
  153. */
  154. # define TCP_MSS 512
  155. # define TCP_MAXWIN 65535 /* largest value for (unscaled) window */
  156. # define TCP_MAX_WINSHIFT 14 /* maximum window shift */
  157. # define SOL_TCP 6 /* TCP level */
  158. # define TCPI_OPT_TIMESTAMPS 1
  159. # define TCPI_OPT_SACK 2
  160. # define TCPI_OPT_WSCALE 4
  161. # define TCPI_OPT_ECN 8
  162. /* Values for tcpi_state. */
  163. enum tcp_ca_state
  164. {
  165. TCP_CA_Open = 0,
  166. TCP_CA_Disorder = 1,
  167. TCP_CA_CWR = 2,
  168. TCP_CA_Recovery = 3,
  169. TCP_CA_Loss = 4
  170. };
  171. struct tcp_info
  172. {
  173. u_int8_t tcpi_state;
  174. u_int8_t tcpi_ca_state;
  175. u_int8_t tcpi_retransmits;
  176. u_int8_t tcpi_probes;
  177. u_int8_t tcpi_backoff;
  178. u_int8_t tcpi_options;
  179. u_int8_t tcpi_snd_wscale : 4, tcpi_rcv_wscale : 4;
  180. u_int32_t tcpi_rto;
  181. u_int32_t tcpi_ato;
  182. u_int32_t tcpi_snd_mss;
  183. u_int32_t tcpi_rcv_mss;
  184. u_int32_t tcpi_unacked;
  185. u_int32_t tcpi_sacked;
  186. u_int32_t tcpi_lost;
  187. u_int32_t tcpi_retrans;
  188. u_int32_t tcpi_fackets;
  189. /* Times. */
  190. u_int32_t tcpi_last_data_sent;
  191. u_int32_t tcpi_last_ack_sent; /* Not remembered, sorry. */
  192. u_int32_t tcpi_last_data_recv;
  193. u_int32_t tcpi_last_ack_recv;
  194. /* Metrics. */
  195. u_int32_t tcpi_pmtu;
  196. u_int32_t tcpi_rcv_ssthresh;
  197. u_int32_t tcpi_rtt;
  198. u_int32_t tcpi_rttvar;
  199. u_int32_t tcpi_snd_ssthresh;
  200. u_int32_t tcpi_snd_cwnd;
  201. u_int32_t tcpi_advmss;
  202. u_int32_t tcpi_reordering;
  203. u_int32_t tcpi_rcv_rtt;
  204. u_int32_t tcpi_rcv_space;
  205. u_int32_t tcpi_total_retrans;
  206. };
  207. /* For TCP_MD5SIG socket option. */
  208. #define TCP_MD5SIG_MAXKEYLEN 80
  209. struct tcp_md5sig
  210. {
  211. struct sockaddr_storage tcpm_addr; /* Address associated. */
  212. u_int16_t __tcpm_pad1; /* Zero. */
  213. u_int16_t tcpm_keylen; /* Key length. */
  214. u_int32_t __tcpm_pad2; /* Zero. */
  215. u_int8_t tcpm_key[TCP_MD5SIG_MAXKEYLEN]; /* Key (binary). */
  216. };
  217. #endif /* Misc. */
  218. #endif /* netinet/tcp.h */