2 utcp.h -- Userspace TCP
3 Copyright (C) 2014 Guus Sliepen <guus@tinc-vpn.org>
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License along
16 with this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
26 #define PREP(l) char pkt[(l) + sizeof struct hdr]; struct hdr *hdr = &pkt;
33 #define DEFAULT_SNDBUFSIZE 4096
34 #define DEFAULT_MAXSNDBUFSIZE 131072
37 uint16_t src; // Source port
38 uint16_t dst; // Destination port
39 uint32_t seq; // Sequence number
40 uint32_t ack; // Acknowledgement number
41 uint32_t wnd; // Window size
42 uint16_t ctl; // Flags (SYN, ACK, FIN, RST)
43 uint16_t aux; // other stuff
60 static const char *strstate[] __attribute__((unused)) = {
63 [SYN_SENT] = "SYN_SENT",
64 [SYN_RECEIVED] = "SYN_RECEIVED",
65 [ESTABLISHED] = "ESTABLISHED",
66 [FIN_WAIT_1] = "FIN_WAIT_1",
67 [FIN_WAIT_2] = "FIN_WAIT_2",
68 [CLOSE_WAIT] = "CLOSE_WAIT",
69 [CLOSING] = "CLOSING",
70 [LAST_ACK] = "LAST_ACK",
71 [TIME_WAIT] = "TIME_WAIT"
74 struct utcp_connection {
110 struct timeval conn_timeout;
111 struct timeval rtrx_timeout;
117 uint32_t maxsndbufsize;
119 // Per-socket options
124 // Congestion avoidance state
126 struct timeval tlast;
135 utcp_accept_t accept;
136 utcp_pre_accept_t pre_accept;
139 // Global socket options
144 // Connection management
146 struct utcp_connection **connections;