From 01ffed710c5d8b276223c8f332053c292f158e77 Mon Sep 17 00:00:00 2001 From: Gunnar Beutner Date: Sun, 23 Oct 2022 10:42:39 +0200 Subject: [PATCH] Kernel: Add definition for MSB_EOR None of the protocols we support at the moment use this, but it makes boost happy. --- Kernel/API/POSIX/sys/socket.h | 1 + 1 file changed, 1 insertion(+) 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;