diff options
author | Idan Horowitz <idan.horowitz@gmail.com> | 2021-12-02 00:39:50 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-12-05 12:53:29 +0100 |
commit | e521ffd1566656c2d65a9db4be9a3827e64d276c (patch) | |
tree | 788989ebb4e82655215586510de20d68c3a14729 /Kernel/API | |
parent | 5514d60d8dc5abd110bf16b516b55ec0e622a028 (diff) | |
download | serenity-e521ffd1566656c2d65a9db4be9a3827e64d276c.zip |
Kernel: Add support for the MSG_WAITALL sys$recvmsg flag
Diffstat (limited to 'Kernel/API')
-rw-r--r-- | Kernel/API/POSIX/sys/socket.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Kernel/API/POSIX/sys/socket.h b/Kernel/API/POSIX/sys/socket.h index e08199be86..c7d22e008e 100644 --- a/Kernel/API/POSIX/sys/socket.h +++ b/Kernel/API/POSIX/sys/socket.h @@ -53,6 +53,7 @@ extern "C" { #define MSG_PEEK 0x4 #define MSG_OOB 0x8 #define MSG_DONTROUTE 0x10 +#define MSG_WAITALL 0x20 #define MSG_DONTWAIT 0x40 typedef uint16_t sa_family_t; |