diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-03-13 14:22:27 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-03-13 14:22:27 +0100 |
commit | b59d588c0482a78c9a69f88b82aa0e2bb8fe1955 (patch) | |
tree | 9ae7da7329de52f8e7593de0b508eb511dc4daf5 /LibC | |
parent | 562663df7c13d27834adacaa1fa5cb9a4ef47c2e (diff) | |
download | serenity-b59d588c0482a78c9a69f88b82aa0e2bb8fe1955.zip |
Kernel: Start fleshing out an UDP implementation.
Diffstat (limited to 'LibC')
-rw-r--r-- | LibC/sys/socket.h | 1 |
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 |