mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-26 09:30:24 +00:00
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.
This commit is contained in:
parent
613ade9dec
commit
d18b3eb53d
Notes:
sideshowbarker
2024-07-17 23:10:26 +09:00
Author: https://github.com/IdanHo Commit: https://github.com/SerenityOS/serenity/commit/d18b3eb53dc Pull-request: https://github.com/SerenityOS/serenity/pull/11152 Reviewed-by: https://github.com/awesomekling
1 changed files with 2 additions and 0 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue