File tree Expand file tree Collapse file tree 2 files changed +15
-0
lines changed Expand file tree Collapse file tree 2 files changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -55,6 +55,13 @@ AIO_ALLDONE
5555AIO_CANCELED
5656AIO_LISTIO_MAX
5757AIO_NOTCANCELED
58+ AI_PASSIVE
59+ AI_CANONNAME
60+ AI_NUMERICHOST
61+ AI_NUMERICSERV
62+ AI_ALL
63+ AI_ADDRCONFIG
64+ AI_V4MAPPED
5865ALTMON_1
5966ALTMON_10
6067ALTMON_11
Original file line number Diff line number Diff line change @@ -724,6 +724,14 @@ pub const POLLSTANDARD: ::c_short = ::POLLIN
724724 | :: POLLHUP
725725 | :: POLLNVAL ;
726726
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+
727735pub const EAI_AGAIN : :: c_int = 2 ;
728736pub const EAI_BADFLAGS : :: c_int = 3 ;
729737pub const EAI_FAIL : :: c_int = 4 ;
You can’t perform that action at this time.
0 commit comments