diff options
author | Idan Horowitz <idan.horowitz@gmail.com> | 2021-12-02 01:03:22 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-12-05 12:53:29 +0100 |
commit | d18b3eb53dcb6e11be91600f913dd3b1d4a9ed5e (patch) | |
tree | 8f09ca7d51a521e76ae7f68c6a97297cf78846c7 /Kernel | |
parent | 613ade9deca60a53235490de6e0d6281ea2ac295 (diff) | |
download | serenity-d18b3eb53dcb6e11be91600f913dd3b1d4a9ed5e.zip |
Kernel: Add the SO_OOBINLINE SOL_SOCKET-level option macro
This is not actually implemented, as we don't have any support for
out-of-band right now, but this is required for some ports to compile.
Diffstat (limited to 'Kernel')
-rw-r--r-- | Kernel/API/POSIX/sys/socket.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Kernel/API/POSIX/sys/socket.h b/Kernel/API/POSIX/sys/socket.h index 9dce41f43f..fa4301d201 100644 --- a/Kernel/API/POSIX/sys/socket.h +++ b/Kernel/API/POSIX/sys/socket.h @@ -110,6 +110,7 @@ enum { SO_LINGER, SO_ACCEPTCONN, SO_DONTROUTE, + SO_OOBINLINE, }; #define SO_RCVTIMEO SO_RCVTIMEO #define SO_SNDTIMEO SO_SNDTIMEO @@ -127,6 +128,7 @@ enum { #define SO_LINGER SO_LINGER #define SO_ACCEPTCONN SO_ACCEPTCONN #define SO_DONTROUTE SO_DONTROUTE +#define SO_OOBINLINE SO_OOBINLINE enum { SCM_TIMESTAMP, |