mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 15:48:12 +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
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…
Add table
Add a link
Reference in a new issue