]> git.meshlink.io Git - utcp/commitdiff
Define UTCP_SHUT_RD/WR/RDWR.
authorGuus Sliepen <guus@meshlink.io>
Sun, 11 Oct 2015 15:00:17 +0000 (17:00 +0200)
committerGuus Sliepen <guus@sliepen.org>
Sun, 2 Jul 2017 09:54:58 +0000 (11:54 +0200)
Don't rely on <sys/socket.h> for the definitions of SHUT_RD/WR/RDWR, add
our own. They should be compatible.

utcp.h

diff --git a/utcp.h b/utcp.h
index 085a28779cc1bd0acf64b43f19cf15bc77b4bcb9..a29ef96b9293975db7482c92d4508e4e0a3df63e 100644 (file)
--- a/utcp.h
+++ b/utcp.h
@@ -40,6 +40,10 @@ struct utcp;
 struct utcp_connection;
 #endif
 
+#define UTCP_SHUT_RD 0
+#define UTCP_SHUT_WR 1
+#define UTCP_SHUT_RDWR 2
+
 typedef bool (*utcp_pre_accept_t)(struct utcp *utcp, uint16_t port);
 typedef void (*utcp_accept_t)(struct utcp_connection *utcp_connection, uint16_t port);