From f605d8538fde29e29420180746476802f3198144 Mon Sep 17 00:00:00 2001 From: Anton Kling Date: Wed, 1 Nov 2023 03:00:00 +0100 Subject: Kernel: Add a simple TCP implementation --- userland/libc/include/socket.h | 1 + 1 file changed, 1 insertion(+) (limited to 'userland/libc/include/socket.h') diff --git a/userland/libc/include/socket.h b/userland/libc/include/socket.h index 2bf6345..bee592b 100644 --- a/userland/libc/include/socket.h +++ b/userland/libc/include/socket.h @@ -8,6 +8,7 @@ #define AF_LOCAL AF_UNIX #define SOCK_DGRAM 0 +#define SOCK_STREAM 1 #define INADDR_ANY 0 -- cgit v1.2.3