diff options
author | Anton Kling <anton@kling.gg> | 2023-11-01 03:00:00 +0100 |
---|---|---|
committer | Anton Kling <anton@kling.gg> | 2023-11-01 03:00:32 +0100 |
commit | f605d8538fde29e29420180746476802f3198144 (patch) | |
tree | 7177db8fe6ccba577e56ae225795168854fa891e /userland/libc | |
parent | ee0b650da5ecf8778de560ee221200fb69beb791 (diff) |
Kernel: Add a simple TCP implementation
Diffstat (limited to 'userland/libc')
-rw-r--r-- | userland/libc/include/socket.h | 1 |
1 files changed, 1 insertions, 0 deletions
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 |