mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 14:48:14 +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
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