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 0b694e4 commit cfde228Copy full SHA for cfde228
src/unix/redox/mod.rs
@@ -440,6 +440,13 @@ pub const O_NOFOLLOW: ::c_int = -0x8000_0000;
440
441
// netdb.h
442
pub const EAI_SYSTEM: ::c_int = -11;
443
+pub const NI_MAXHOST: ::c_int = 1025;
444
+pub const NI_MAXSERV: ::c_int = 32;
445
+pub const NI_NUMERICHOST: ::c_int = 0x0001;
446
+pub const NI_NUMERICSERV: ::c_int = 0x0002;
447
+pub const NI_NOFQDN: ::c_int = 0x0004;
448
+pub const NI_NAMEREQD: ::c_int = 0x0008;
449
+pub const NI_DGRAM: ::c_int = 0x0010;
450
451
// netinet/in.h
452
// FIXME: relibc {
0 commit comments