summaryrefslogtreecommitdiff
path: root/LibC
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-03-13 14:22:27 +0100
committerAndreas Kling <awesomekling@gmail.com>2019-03-13 14:22:27 +0100
commitb59d588c0482a78c9a69f88b82aa0e2bb8fe1955 (patch)
tree9ae7da7329de52f8e7593de0b508eb511dc4daf5 /LibC
parent562663df7c13d27834adacaa1fa5cb9a4ef47c2e (diff)
downloadserenity-b59d588c0482a78c9a69f88b82aa0e2bb8fe1955.zip
Kernel: Start fleshing out an UDP implementation.
Diffstat (limited to 'LibC')
-rw-r--r--LibC/sys/socket.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/LibC/sys/socket.h b/LibC/sys/socket.h
index 63d99ab466..875bb5223a 100644
--- a/LibC/sys/socket.h
+++ b/LibC/sys/socket.h
@@ -15,6 +15,7 @@ __BEGIN_DECLS
#define SOCK_TYPE_MASK 0xff
#define SOCK_STREAM 1
+#define SOCK_DGRAM 2
#define SOCK_RAW 3
#define SOCK_NONBLOCK 04000
#define SOCK_CLOEXEC 02000000