]> git.meshlink.io Git - utcp/blob - utcp.h
Add a function to manually start the connection timeout timers.
[utcp] / utcp.h
1 /*
2     utcp.h -- Userspace TCP
3     Copyright (C) 2014 Guus Sliepen <guus@tinc-vpn.org>
4
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.
9
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.
14
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.
18 */
19
20 #ifndef UTCP_H
21 #define UTCP_H
22
23 #include <unistd.h>
24 #include <stdint.h>
25 #include <stdbool.h>
26 // TODO: Windows
27 #include <sys/time.h>
28
29 #ifndef UTCP_INTERNAL
30 struct utcp {
31         void *priv;
32 };
33
34 struct utcp_connection {
35         void *priv;
36         struct utcp *const utcp;
37         const uint32_t flags;
38 };
39 #else
40 struct utcp;
41 struct utcp_connection;
42 #endif
43
44 #define UTCP_SHUT_RD 0
45 #define UTCP_SHUT_WR 1
46 #define UTCP_SHUT_RDWR 2
47
48 #define UTCP_ORDERED 1
49 #define UTCP_RELIABLE 2
50 #define UTCP_FRAMED 4
51 #define UTCP_DROP_LATE 8
52
53 #define UTCP_TCP 3
54 #define UTCP_UDP 0
55
56 typedef bool (*utcp_pre_accept_t)(struct utcp *utcp, uint16_t port);
57 typedef void (*utcp_accept_t)(struct utcp_connection *utcp_connection, uint16_t port);
58
59 typedef ssize_t (*utcp_send_t)(struct utcp *utcp, const void *data, size_t len);
60 typedef ssize_t (*utcp_recv_t)(struct utcp_connection *connection, const void *data, size_t len);
61
62 typedef void (*utcp_poll_t)(struct utcp_connection *connection, size_t len);
63
64 extern struct utcp *utcp_init(utcp_accept_t accept, utcp_pre_accept_t pre_accept, utcp_send_t send, void *priv);
65 extern void utcp_exit(struct utcp *utcp);
66
67 extern struct utcp_connection *utcp_connect_ex(struct utcp *utcp, uint16_t port, utcp_recv_t recv, void *priv, uint32_t flags);
68 extern struct utcp_connection *utcp_connect(struct utcp *utcp, uint16_t port, utcp_recv_t recv, void *priv);
69 extern void utcp_accept(struct utcp_connection *utcp, utcp_recv_t recv, void *priv);
70 extern ssize_t utcp_send(struct utcp_connection *connection, const void *data, size_t len);
71 extern ssize_t utcp_recv(struct utcp *utcp, const void *data, size_t len);
72 extern int utcp_close(struct utcp_connection *connection);
73 extern int utcp_abort(struct utcp_connection *connection);
74 extern int utcp_shutdown(struct utcp_connection *connection, int how);
75 extern struct timeval utcp_timeout(struct utcp *utcp);
76 extern void utcp_set_recv_cb(struct utcp_connection *connection, utcp_recv_t recv);
77 extern void utcp_set_poll_cb(struct utcp_connection *connection, utcp_poll_t poll);
78 extern void utcp_set_accept_cb(struct utcp *utcp, utcp_accept_t accept, utcp_pre_accept_t pre_accept);
79 extern bool utcp_is_active(struct utcp *utcp);
80 extern void utcp_abort_all_connections(struct utcp *utcp);
81
82 // Global socket options
83
84 extern int utcp_get_user_timeout(struct utcp *utcp);
85 extern void utcp_set_user_timeout(struct utcp *utcp, int seconds);
86
87 extern uint16_t utcp_get_mtu(struct utcp *utcp);
88 extern void utcp_set_mtu(struct utcp *utcp, uint16_t mtu);
89
90 extern void utcp_reset_timers(struct utcp *utcp);
91
92 extern void utcp_offline(struct utcp *utcp, bool offline);
93
94 // Per-socket options
95
96 extern size_t utcp_get_sndbuf(struct utcp_connection *connection);
97 extern void utcp_set_sndbuf(struct utcp_connection *connection, size_t size);
98 extern size_t utcp_get_sndbuf_free(struct utcp_connection *connection);
99
100 extern size_t utcp_get_rcvbuf(struct utcp_connection *connection);
101 extern void utcp_set_rcvbuf(struct utcp_connection *connection, size_t size);
102 extern size_t utcp_get_rcvbuf_free(struct utcp_connection *connection);
103
104 extern size_t utcp_get_sendq(struct utcp_connection *connection);
105 extern size_t utcp_get_recvq(struct utcp_connection *connection);
106
107 extern bool utcp_get_nodelay(struct utcp_connection *connection);
108 extern void utcp_set_nodelay(struct utcp_connection *connection, bool nodelay);
109
110 extern bool utcp_get_keepalive(struct utcp_connection *connection);
111 extern void utcp_set_keepalive(struct utcp_connection *connection, bool keepalive);
112
113 extern size_t utcp_get_outq(struct utcp_connection *connection);
114
115 extern void utcp_expect_data(struct utcp_connection *connection, bool expect);
116
117 #endif