We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1abc2e4 commit 31cad4eCopy full SHA for 31cad4e
src/unix/newlib/espidf/mod.rs
@@ -62,6 +62,8 @@ s! {
62
pub const AF_UNIX: ::c_int = 1;
63
pub const AF_INET6: ::c_int = 10;
64
65
+pub const SOMAXCONN: ::c_int = 128;
66
+
67
pub const FIONBIO: ::c_ulong = 2147772030;
68
69
pub const POLLIN: ::c_short = 1 << 0;
src/unix/newlib/vita/mod.rs
@@ -94,6 +94,8 @@ pub const SOCK_RAW: ::c_int = 3;
94
pub const SOCK_RDM: ::c_int = 4;
95
pub const SOCK_SEQPACKET: ::c_int = 5;
96
97
98
99
pub const FIONBIO: ::c_ulong = 1;
100
101
pub const POLLIN: ::c_short = 0x0001;
0 commit comments