summaryrefslogtreecommitdiff
path: root/src/libstddjb/socket_connect4_u32.c
diff options
context:
space:
mode:
authorLaurent Bercot <ska-skaware@skarnet.org>2022-06-01 12:36:34 +0000
committerLaurent Bercot <ska@appnovation.com>2022-06-01 12:36:34 +0000
commite88276fdec7b3b94ec939f5eb1c8def004ee3878 (patch)
tree118f28d54fe208fe823e5e4cc775bbf377ea53a4 /src/libstddjb/socket_connect4_u32.c
parent37b42c179bb00d05cb47c739cb95283548f84fb2 (diff)
downloadskalibs-e88276fdec7b3b94ec939f5eb1c8def004ee3878.tar.xz
Rework endianness conversion primitives
Signed-off-by: Laurent Bercot <ska@appnovation.com>
Diffstat (limited to 'src/libstddjb/socket_connect4_u32.c')
-rw-r--r--src/libstddjb/socket_connect4_u32.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/libstddjb/socket_connect4_u32.c b/src/libstddjb/socket_connect4_u32.c
new file mode 100644
index 0000000..6061e65
--- /dev/null
+++ b/src/libstddjb/socket_connect4_u32.c
@@ -0,0 +1,11 @@
+/* ISC license. */
+
+#include <skalibs/uint32.h>
+#include <skalibs/socket.h>
+
+int socket_connect4_u32 (int s, uint32_t ip, uint16_t port)
+{
+ char pack[4] ;
+ uint32_pack_big(pack, ip) ;
+ return socket_connect4(s, pack, port) ;
+}