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;
34 #define DEFAULT_SNDBUFSIZE 4096
35 #define DEFAULT_MAXSNDBUFSIZE 131072
36 #define DEFAULT_RCVBUFSIZE 0
37 #define DEFAULT_MAXRCVBUFSIZE 131072
40 uint16_t src; // Source port
41 uint16_t dst; // Destination port
42 uint32_t seq; // Sequence number
43 uint32_t ack; // Acknowledgement number
44 uint32_t wnd; // Window size
45 uint16_t ctl; // Flags (SYN, ACK, FIN, RST)
46 uint16_t aux; // other stuff
63 static const char *strstate[] __attribute__((unused)) = {
66 [SYN_SENT] = "SYN_SENT",
67 [SYN_RECEIVED] = "SYN_RECEIVED",
68 [ESTABLISHED] = "ESTABLISHED",
69 [FIN_WAIT_1] = "FIN_WAIT_1",
70 [FIN_WAIT_2] = "FIN_WAIT_2",
71 [CLOSE_WAIT] = "CLOSE_WAIT",
72 [CLOSING] = "CLOSING",
73 [LAST_ACK] = "LAST_ACK",
74 [TIME_WAIT] = "TIME_WAIT"
89 struct utcp_connection {
126 struct timeval conn_timeout;
127 struct timeval rtrx_timeout;
131 struct buffer sndbuf;
132 struct buffer rcvbuf;
133 struct sack sacks[NSACKS];
135 // Per-socket options
140 // Congestion avoidance state
142 struct timeval tlast;
151 utcp_accept_t accept;
152 utcp_pre_accept_t pre_accept;
155 // Global socket options
160 // Connection management
162 struct utcp_connection **connections;