1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 20:47:45 +00:00

Kernel: Implement the SO_ACCEPTCONN SOL_SOCKET-level option

This commit is contained in:
Idan Horowitz 2021-12-02 00:52:12 +02:00 committed by Andreas Kling
parent a0e2fedc20
commit 641498954f
2 changed files with 10 additions and 0 deletions

View file

@ -108,6 +108,7 @@ enum {
SO_TIMESTAMP,
SO_BROADCAST,
SO_LINGER,
SO_ACCEPTCONN,
};
#define SO_RCVTIMEO SO_RCVTIMEO
#define SO_SNDTIMEO SO_SNDTIMEO
@ -123,6 +124,7 @@ enum {
#define SO_SNDBUF SO_SNDBUF
#define SO_RCVBUF SO_RCVBUF
#define SO_LINGER SO_LINGER
#define SO_ACCEPTCONN SO_ACCEPTCONN
enum {
SCM_TIMESTAMP,