From 4e09bca9e34c226b6d7e34b4fa11248405fd988e Mon Sep 17 00:00:00 2001 From: Anton Kling Date: Sun, 22 Oct 2023 19:50:38 +0200 Subject: Move everything into a new repo. --- scalls/bind.h | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 scalls/bind.h (limited to 'scalls/bind.h') diff --git a/scalls/bind.h b/scalls/bind.h new file mode 100644 index 0000000..5661ad0 --- /dev/null +++ b/scalls/bind.h @@ -0,0 +1,9 @@ +#include "../socket.h" + +typedef struct SYS_BIND_PARAMS { + int sockfd; + const struct sockaddr *addr; + socklen_t addrlen; +} __attribute__((packed)) SYS_BIND_PARAMS; + +int syscall_bind(SYS_BIND_PARAMS *args); -- cgit v1.2.3