adding SOCK_RDM and a couple of POLL* constants.

close #164
This commit is contained in:
David Carlier
2023-03-26 08:11:08 +01:00
parent ae745427cd
commit 66fdebc0cb
2 changed files with 10 additions and 1 deletions
+1
View File
@@ -6,6 +6,7 @@ pub const SOCK_NONBLOCK: c_int = 0o4_000;
pub const SOCK_CLOEXEC: c_int = 0o2_000_000;
// Other constants
pub const SOCK_RDM: c_int = 4;
pub const SOCK_SEQPACKET: c_int = 5;
pub const SOL_SOCKET: c_int = 1;