summaryrefslogtreecommitdiff
path: root/scalls/bind.h
diff options
context:
space:
mode:
authorAnton Kling <anton@kling.gg>2023-10-22 19:50:38 +0200
committerAnton Kling <anton@kling.gg>2023-10-22 19:50:38 +0200
commit4e09bca9e34c226b6d7e34b4fa11248405fd988e (patch)
tree80f156b7940d9d19971395f335530170c69516c7 /scalls/bind.h
Move everything into a new repo.
Diffstat (limited to 'scalls/bind.h')
-rw-r--r--scalls/bind.h9
1 files changed, 9 insertions, 0 deletions
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);