1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 04:58:13 +00:00

Kernel: Stub out the SO_DEBUG SOL_SOCKET-level option

This commit is contained in:
Idan Horowitz 2021-12-02 00:48:09 +02:00 committed by Andreas Kling
parent e521ffd156
commit a0e2fedc20
3 changed files with 14 additions and 0 deletions

View file

@ -101,6 +101,7 @@ enum {
SO_PEERCRED,
SO_RCVBUF,
SO_SNDBUF,
SO_DEBUG,
SO_REUSEADDR,
SO_BINDTODEVICE,
SO_KEEPALIVE,
@ -113,6 +114,7 @@ enum {
#define SO_TYPE SO_TYPE
#define SO_ERROR SO_ERROR
#define SO_PEERCRED SO_PEERCRED
#define SO_DEBUG SO_DEBUG
#define SO_REUSEADDR SO_REUSEADDR
#define SO_BINDTODEVICE SO_BINDTODEVICE
#define SO_KEEPALIVE SO_KEEPALIVE