]> git.meshlink.io Git - meshlink-tiny/blobdiff - src/utcp.h
Remove all support for channels.
[meshlink-tiny] / src / utcp.h
diff --git a/src/utcp.h b/src/utcp.h
deleted file mode 100644 (file)
index e34d96c..0000000
+++ /dev/null
@@ -1,110 +0,0 @@
-/*
-    utcp.h -- Userspace TCP
-    Copyright (C) 2014 Guus Sliepen <guus@tinc-vpn.org>
-
-    This program is free software; you can redistribute it and/or modify
-    it under the terms of the GNU General Public License as published by
-    the Free Software Foundation; either version 2 of the License, or
-    (at your option) any later version.
-
-    This program is distributed in the hope that it will be useful,
-    but WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-    GNU General Public License for more details.
-
-    You should have received a copy of the GNU General Public License along
-    with this program; if not, write to the Free Software Foundation, Inc.,
-    51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
-*/
-
-#ifndef UTCP_H
-#define UTCP_H
-
-#include <unistd.h>
-#include <stdint.h>
-#include <stdbool.h>
-// TODO: Windows
-#include <sys/time.h>
-
-#ifndef UTCP_INTERNAL
-struct utcp {
-       void *priv;
-};
-
-struct utcp_connection {
-       void *priv;
-       struct utcp *const utcp;
-       const uint32_t flags;
-};
-#else
-struct utcp;
-struct utcp_connection;
-#endif
-
-#define UTCP_SHUT_RD 0
-#define UTCP_SHUT_WR 1
-#define UTCP_SHUT_RDWR 2
-
-//#define UTCP_ORDERED 1
-//#define UTCP_RELIABLE 2
-//#define UTCP_FRAMED 4
-//#define UTCP_DROP_LATE 8
-//#define UTCP_NO_PARTIAL 16
-
-//#define UTCP_TCP 3
-#define UTCP_UDP 0
-#define UTCP_CHANGEABLE_FLAGS 0x0U
-
-typedef bool (*utcp_listen_t)(struct utcp *utcp, uint16_t port);
-typedef void (*utcp_accept_t)(struct utcp_connection *utcp_connection, uint16_t port);
-
-typedef ssize_t (*utcp_send_t)(struct utcp *utcp, const void *data, size_t len);
-typedef ssize_t (*utcp_recv_t)(struct utcp_connection *connection, const void *data, size_t len);
-
-
-struct utcp *utcp_init(utcp_accept_t accept, utcp_listen_t listen, utcp_send_t send, void *priv);
-void utcp_exit(struct utcp *utcp);
-
-struct utcp_connection *utcp_connect_ex(struct utcp *utcp, uint16_t port, utcp_recv_t recv, void *priv, uint32_t flags);
-void utcp_accept(struct utcp_connection *utcp, utcp_recv_t recv, void *priv);
-ssize_t utcp_send(struct utcp_connection *connection, const void *data, size_t len);
-ssize_t utcp_recv(struct utcp *utcp, const void *data, size_t len);
-int utcp_close(struct utcp_connection *connection);
-int utcp_abort(struct utcp_connection *connection);
-int utcp_shutdown(struct utcp_connection *connection, int how);
-struct timespec utcp_timeout(struct utcp *utcp);
-void utcp_set_recv_cb(struct utcp_connection *connection, utcp_recv_t recv);
-void utcp_set_accept_cb(struct utcp *utcp, utcp_accept_t accept, utcp_listen_t listen);
-bool utcp_is_active(struct utcp *utcp);
-void utcp_reset_all_connections(struct utcp *utcp);
-
-// Global socket options
-
-int utcp_get_user_timeout(struct utcp *utcp);
-void utcp_set_user_timeout(struct utcp *utcp, int seconds);
-
-uint16_t utcp_get_mtu(struct utcp *utcp);
-uint16_t utcp_get_mss(struct utcp *utcp);
-void utcp_set_mtu(struct utcp *utcp, uint16_t mtu);
-
-void utcp_reset_timers(struct utcp *utcp);
-
-void utcp_offline(struct utcp *utcp, bool offline);
-
-// Per-socket options
-
-bool utcp_get_nodelay(struct utcp_connection *connection);
-void utcp_set_nodelay(struct utcp_connection *connection, bool nodelay);
-
-bool utcp_get_keepalive(struct utcp_connection *connection);
-void utcp_set_keepalive(struct utcp_connection *connection, bool keepalive);
-
-void utcp_expect_data(struct utcp_connection *connection, bool expect);
-
-void utcp_set_flags(struct utcp_connection *connection, uint32_t flags);
-
-// Completely global options
-
-void utcp_set_clock_granularity(long granularity);
-
-#endif