File tree 4 files changed +28
-0
lines changed
4 files changed +28
-0
lines changed Original file line number Diff line number Diff line change @@ -49,6 +49,12 @@ AF_SNA
49
49
AIO_ALLDONE
50
50
AIO_CANCELED
51
51
AIO_NOTCANCELED
52
+ AI_ADDRCONFIG
53
+ AI_CANONNAME
54
+ AI_NUMERICHOST
55
+ AI_NUMERICSERV
56
+ AI_PASSIVE
57
+ AI_SRV
52
58
ALTWERASE
53
59
ALT_DIGITS
54
60
AM_STR
Original file line number Diff line number Diff line change @@ -46,6 +46,13 @@ AF_PUP
46
46
AF_ROUTE
47
47
AF_SIP
48
48
AF_SNA
49
+ AI_ADDRCONFIG
50
+ AI_CANONNAME
51
+ AI_EXT
52
+ AI_FQDN
53
+ AI_NUMERICHOST
54
+ AI_NUMERICSERV
55
+ AI_PASSIVE
49
56
ALTWERASE
50
57
AM_STR
51
58
ARPOP_REPLY
Original file line number Diff line number Diff line change @@ -1710,6 +1710,13 @@ pub const NOTE_CHILD: u32 = 0x00000004;
1710
1710
1711
1711
pub const TMP_MAX : :: c_uint = 308915776 ;
1712
1712
1713
+ pub const AI_PASSIVE : :: c_int = 0x00000001 ;
1714
+ pub const AI_CANONNAME : :: c_int = 0x00000002 ;
1715
+ pub const AI_NUMERICHOST : :: c_int = 0x00000004 ;
1716
+ pub const AI_NUMERICSERV : :: c_int = 0x00000008 ;
1717
+ pub const AI_ADDRCONFIG : :: c_int = 0x00000400 ;
1718
+ pub const AI_SRV : :: c_int = 0x00000800 ;
1719
+
1713
1720
pub const NI_MAXHOST : :: socklen_t = 1025 ;
1714
1721
pub const NI_MAXSERV : :: socklen_t = 32 ;
1715
1722
Original file line number Diff line number Diff line change @@ -1186,6 +1186,14 @@ pub const NOTE_CHILD: u32 = 0x00000004;
1186
1186
1187
1187
pub const TMP_MAX : :: c_uint = 0x7fffffff ;
1188
1188
1189
+ pub const AI_PASSIVE : :: c_int = 1 ;
1190
+ pub const AI_CANONNAME : :: c_int = 2 ;
1191
+ pub const AI_NUMERICHOST : :: c_int = 4 ;
1192
+ pub const AI_EXT : :: c_int = 8 ;
1193
+ pub const AI_NUMERICSERV : :: c_int = 16 ;
1194
+ pub const AI_FQDN : :: c_int = 32 ;
1195
+ pub const AI_ADDRCONFIG : :: c_int = 64 ;
1196
+
1189
1197
pub const NI_NUMERICHOST : :: c_int = 1 ;
1190
1198
pub const NI_NUMERICSERV : :: c_int = 2 ;
1191
1199
pub const NI_NOFQDN : :: c_int = 4 ;
You can’t perform that action at this time.
0 commit comments