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
Notes: sideshowbarker 2024-07-18 05:43:05 +09:00

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