diff options
author | Gunnar Beutner <gbeutner@serenityos.org> | 2022-10-23 10:42:39 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-10-24 15:49:39 +0200 |
commit | 01ffed710c5d8b276223c8f332053c292f158e77 (patch) | |
tree | 0fa805ba23c55883c54ab15e56f0a074f048898a /Kernel/API | |
parent | 1b13d52a872fa6c3ecb0bd26758e57715b712b44 (diff) | |
download | serenity-01ffed710c5d8b276223c8f332053c292f158e77.zip |
Kernel: Add definition for MSB_EOR
None of the protocols we support at the moment use this, but it makes
boost happy.
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 b6ee4ac895..bdd5d3328b 100644 --- a/Kernel/API/POSIX/sys/socket.h +++ b/Kernel/API/POSIX/sys/socket.h @@ -61,6 +61,7 @@ extern "C" { #define MSG_WAITALL 0x20 #define MSG_DONTWAIT 0x40 #define MSG_NOSIGNAL 0x80 +#define MSG_EOR 0x100 typedef uint16_t sa_family_t; |