File tree 2 files changed +15
-0
lines changed
2 files changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -55,6 +55,13 @@ AIO_ALLDONE
55
55
AIO_CANCELED
56
56
AIO_LISTIO_MAX
57
57
AIO_NOTCANCELED
58
+ AI_PASSIVE
59
+ AI_CANONNAME
60
+ AI_NUMERICHOST
61
+ AI_NUMERICSERV
62
+ AI_ALL
63
+ AI_ADDRCONFIG
64
+ AI_V4MAPPED
58
65
ALTMON_1
59
66
ALTMON_10
60
67
ALTMON_11
Original file line number Diff line number Diff line change @@ -724,6 +724,14 @@ pub const POLLSTANDARD: ::c_short = ::POLLIN
724
724
| :: POLLHUP
725
725
| :: POLLNVAL ;
726
726
727
+ pub const AI_PASSIVE : :: c_int = 0x00000001 ;
728
+ pub const AI_CANONNAME : :: c_int = 0x00000002 ;
729
+ pub const AI_NUMERICHOST : :: c_int = 0x00000004 ;
730
+ pub const AI_NUMERICSERV : :: c_int = 0x00000008 ;
731
+ pub const AI_ALL : :: c_int = 0x00000100 ;
732
+ pub const AI_ADDRCONFIG : :: c_int = 0x00000400 ;
733
+ pub const AI_V4MAPPED : :: c_int = 0x00000800 ;
734
+
727
735
pub const EAI_AGAIN : :: c_int = 2 ;
728
736
pub const EAI_BADFLAGS : :: c_int = 3 ;
729
737
pub const EAI_FAIL : :: c_int = 4 ;
You can’t perform that action at this time.
0 commit comments