summaryrefslogtreecommitdiff
path: root/src/network/listen.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/network/listen.c')
-rw-r--r--src/network/listen.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/network/listen.c b/src/network/listen.c
new file mode 100644
index 00000000..7c8c1a8a
--- /dev/null
+++ b/src/network/listen.c
@@ -0,0 +1,9 @@
+#include <sys/socket.h>
+#include "syscall.h"
+#include "socketcall.h"
+
+int listen(int fd, int backlog)
+{
+ unsigned long args[] = { fd, backlog };
+ return syscall2(__NR_socketcall, SYS_LISTEN, (long)args);
+}