mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-31 13:19:05 +00:00
Kernel: Change values of SHUT_{RD,WR,RDWR}
For some reason, guile requires these to be specific values.
This commit is contained in:
parent
3f0be4e9ea
commit
1c86678a64
Notes:
sideshowbarker
2024-07-17 10:42:40 +09:00
Author: https://github.com/petelliott
Commit: 1c86678a64
Pull-request: https://github.com/SerenityOS/serenity/pull/14059
Reviewed-by: https://github.com/ADKaster
Reviewed-by: https://github.com/BertalanD
Reviewed-by: https://github.com/EWouters
Reviewed-by: https://github.com/gmta
1 changed files with 3 additions and 3 deletions
|
@ -37,9 +37,9 @@ extern "C" {
|
|||
#define SOCK_NONBLOCK 04000
|
||||
#define SOCK_CLOEXEC 02000000
|
||||
|
||||
#define SHUT_RD 1
|
||||
#define SHUT_WR 2
|
||||
#define SHUT_RDWR 3
|
||||
#define SHUT_RD 0
|
||||
#define SHUT_WR 1
|
||||
#define SHUT_RDWR 2
|
||||
|
||||
#define IPPROTO_IP 0
|
||||
#define IPPROTO_ICMP 1
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue