1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 08:48:11 +00:00

LibC: Add SOCK_RDM and SOCK_SEQPACKET to socket.h

This commit is contained in:
Kenneth Myhra 2021-08-14 22:00:10 +02:00 committed by Linus Groh
parent 3875e8bd4b
commit cb10c62327

View file

@ -31,6 +31,8 @@ extern "C" {
#define SOCK_STREAM 1
#define SOCK_DGRAM 2
#define SOCK_RAW 3
#define SOCK_RDM 4
#define SOCK_SEQPACKET 5
#define SOCK_NONBLOCK 04000
#define SOCK_CLOEXEC 02000000