f9b8464832221473f89a0196a104f82923407f72
[musl] / include / netinet / tcp.h
1 #ifndef _NETINET_TCP_H
2 #define _NETINET_TCP_H
3
4 #include <features.h>
5
6 #define TCP_NODELAY 1
7 #define TCP_MAXSEG       2
8 #define TCP_CORK         3
9 #define TCP_KEEPIDLE     4
10 #define TCP_KEEPINTVL    5
11 #define TCP_KEEPCNT      6
12 #define TCP_SYNCNT       7
13 #define TCP_LINGER2      8
14 #define TCP_DEFER_ACCEPT 9
15 #define TCP_WINDOW_CLAMP 10
16 #define TCP_INFO         11
17 #define TCP_QUICKACK     12
18 #define TCP_CONGESTION   13
19 #define TCP_MD5SIG       14
20 #define TCP_THIN_LINEAR_TIMEOUTS 16
21 #define TCP_THIN_DUPACK  17
22 #define TCP_USER_TIMEOUT 18
23 #define TCP_REPAIR       19
24 #define TCP_REPAIR_QUEUE 20
25 #define TCP_QUEUE_SEQ    21
26 #define TCP_REPAIR_OPTIONS 22
27 #define TCP_FASTOPEN     23
28 #define TCP_TIMESTAMP    24
29 #define TCP_NOTSENT_LOWAT 25
30
31 #define TCP_ESTABLISHED  1
32 #define TCP_SYN_SENT     2
33 #define TCP_SYN_RECV     3
34 #define TCP_FIN_WAIT1    4
35 #define TCP_FIN_WAIT2    5
36 #define TCP_TIME_WAIT    6
37 #define TCP_CLOSE        7
38 #define TCP_CLOSE_WAIT   8
39 #define TCP_LAST_ACK     9
40 #define TCP_LISTEN       10
41 #define TCP_CLOSING      11
42
43 #if defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
44 #define TCPOPT_EOL              0
45 #define TCPOPT_NOP              1
46 #define TCPOPT_MAXSEG           2
47 #define TCPOPT_WINDOW           3
48 #define TCPOPT_SACK_PERMITTED   4
49 #define TCPOPT_SACK             5
50 #define TCPOPT_TIMESTAMP        8
51 #define TCPOLEN_SACK_PERMITTED  2
52 #define TCPOLEN_WINDOW          3
53 #define TCPOLEN_MAXSEG          4
54 #define TCPOLEN_TIMESTAMP       10
55
56 #define SOL_TCP 6
57
58 #include <sys/types.h>
59 #include <sys/socket.h>
60 #include <stdint.h>
61 #include <endian.h>
62
63 typedef uint32_t tcp_seq;
64
65 #define TH_FIN 0x01
66 #define TH_SYN 0x02
67 #define TH_RST 0x04
68 #define TH_PUSH 0x08
69 #define TH_ACK 0x10
70 #define TH_URG 0x20
71
72 struct tcphdr {
73 #ifdef _GNU_SOURCE
74 #ifdef __GNUC__
75         __extension__
76 #endif
77         union { struct {
78
79         uint16_t source;
80         uint16_t dest;
81         uint32_t seq;
82         uint32_t ack_seq;
83 #if __BYTE_ORDER == __LITTLE_ENDIAN
84         uint16_t res1:4;
85         uint16_t doff:4;
86         uint16_t fin:1;
87         uint16_t syn:1;
88         uint16_t rst:1;
89         uint16_t psh:1;
90         uint16_t ack:1;
91         uint16_t urg:1;
92         uint16_t res2:2;
93 #else
94         uint16_t doff:4;
95         uint16_t res1:4;
96         uint16_t res2:2;
97         uint16_t urg:1;
98         uint16_t ack:1;
99         uint16_t psh:1;
100         uint16_t rst:1;
101         uint16_t syn:1;
102         uint16_t fin:1;
103 #endif
104         uint16_t window;
105         uint16_t check;
106         uint16_t urg_ptr;
107
108         }; struct {
109 #endif
110
111         uint16_t th_sport;
112         uint16_t th_dport;
113         uint32_t th_seq;
114         uint32_t th_ack;
115 #if __BYTE_ORDER == __LITTLE_ENDIAN
116         uint8_t th_x2:4;
117         uint8_t th_off:4;
118 #else
119         uint8_t th_off:4;
120         uint8_t th_x2:4;
121 #endif
122         uint8_t th_flags;
123         uint16_t th_win;
124         uint16_t th_sum;
125         uint16_t th_urp;
126
127 #ifdef _GNU_SOURCE
128         }; };
129 #endif
130 };
131 #endif
132
133 #ifdef _GNU_SOURCE
134 #define TCPI_OPT_TIMESTAMPS     1
135 #define TCPI_OPT_SACK           2
136 #define TCPI_OPT_WSCALE         4
137 #define TCPI_OPT_ECN            8
138
139 #define TCP_CA_Open             0
140 #define TCP_CA_Disorder         1
141 #define TCP_CA_CWR              2
142 #define TCP_CA_Recovery         3
143 #define TCP_CA_Loss             4
144
145 struct tcp_info
146 {
147         uint8_t tcpi_state;
148         uint8_t tcpi_ca_state;
149         uint8_t tcpi_retransmits;
150         uint8_t tcpi_probes;
151         uint8_t tcpi_backoff;
152         uint8_t tcpi_options;
153         uint8_t tcpi_snd_wscale : 4, tcpi_rcv_wscale : 4;
154         uint32_t tcpi_rto;
155         uint32_t tcpi_ato;
156         uint32_t tcpi_snd_mss;
157         uint32_t tcpi_rcv_mss;
158         uint32_t tcpi_unacked;
159         uint32_t tcpi_sacked;
160         uint32_t tcpi_lost;
161         uint32_t tcpi_retrans;
162         uint32_t tcpi_fackets;
163         uint32_t tcpi_last_data_sent;
164         uint32_t tcpi_last_ack_sent;
165         uint32_t tcpi_last_data_recv;
166         uint32_t tcpi_last_ack_recv;
167         uint32_t tcpi_pmtu;
168         uint32_t tcpi_rcv_ssthresh;
169         uint32_t tcpi_rtt;
170         uint32_t tcpi_rttvar;
171         uint32_t tcpi_snd_ssthresh;
172         uint32_t tcpi_snd_cwnd;
173         uint32_t tcpi_advmss;
174         uint32_t tcpi_reordering;
175         uint32_t tcpi_rcv_rtt;
176         uint32_t tcpi_rcv_space;
177         uint32_t tcpi_total_retrans;
178         uint64_t tcpi_pacing_rate;
179         uint64_t tcpi_max_pacing_rate;
180 };
181
182 #define TCP_MD5SIG_MAXKEYLEN    80
183
184 struct tcp_md5sig
185 {
186         struct sockaddr_storage tcpm_addr;
187         uint16_t __tcpm_pad1;
188         uint16_t tcpm_keylen;
189         uint32_t __tcpm_pad2;
190         uint8_t tcpm_key[TCP_MD5SIG_MAXKEYLEN];
191 };
192
193 #endif
194
195 #endif