@@ -50,7 +50,6 @@ libc_bitflags!(
50
50
/// Avoid use of trailers. (see
51
51
/// [`netdevice(7)`](http://man7.org/linux/man-pages/man7/netdevice.7.html))
52
52
#[ cfg( any( target_os = "android" ,
53
- target_os = "bitrig" ,
54
53
target_os = "fuchsia" ,
55
54
target_os = "ios" ,
56
55
target_os = "linux" ,
@@ -67,7 +66,6 @@ libc_bitflags!(
67
66
/// Resources allocated. (see
68
67
/// [`netdevice(7)`](http://man7.org/linux/man-pages/man7/netdevice.7.html))
69
68
#[ cfg( any( target_os = "android" ,
70
- target_os = "bitrig" ,
71
69
target_os = "dragonfly" ,
72
70
target_os = "fuchsia" ,
73
71
target_os = "ios" ,
@@ -105,8 +103,7 @@ libc_bitflags!(
105
103
#[ cfg( target_os = "freebsd" ) ]
106
104
IFF_DRV_OACTIVE ;
107
105
/// transmission in progress
108
- #[ cfg( any( target_os = "bitrig" ,
109
- target_os = "macos" ,
106
+ #[ cfg( any( target_os = "macos" ,
110
107
target_os = "netbsd" ,
111
108
target_os = "openbsd" ,
112
109
target_os = "ios" ) ) ]
@@ -121,8 +118,7 @@ libc_bitflags!(
121
118
#[ cfg( any( target_os = "android" , target_os = "fuchsia" , target_os = "linux" ) ) ]
122
119
IFF_SLAVE ;
123
120
/// Can't hear own transmissions.
124
- #[ cfg( any( target_os = "bitrig" ,
125
- target_os = "dragonfly" ,
121
+ #[ cfg( any( target_os = "dragonfly" ,
126
122
target_os = "freebsd" ,
127
123
target_os = "macos" ,
128
124
target_os = "netbsd" ,
@@ -139,7 +135,12 @@ libc_bitflags!(
139
135
140
136
// bitmask: 0x1000
141
137
/// Per link layer defined bit.
142
- #[ cfg( any( target_os = "bitrig" , target_os = "dragonfly" , target_os = "freebsd" , target_os = "macos" , target_os = "netbsd" , target_os = "openbsd" , target_os = "ios" ) ) ]
138
+ #[ cfg( any( target_os = "dragonfly" ,
139
+ target_os = "freebsd" ,
140
+ target_os = "macos" ,
141
+ target_os = "netbsd" ,
142
+ target_os = "openbsd" ,
143
+ target_os = "ios" ) ) ]
143
144
IFF_LINK0 ;
144
145
/// Multicast using broadcast.
145
146
#[ cfg( any( target_os = "solaris" ) ) ]
@@ -151,7 +152,12 @@ libc_bitflags!(
151
152
#[ cfg( any( target_os = "android" , target_os = "fuchsia" , target_os = "linux" ) ) ]
152
153
IFF_PORTSEL ;
153
154
/// Per link layer defined bit.
154
- #[ cfg( any( target_os = "bitrig" , target_os = "dragonfly" , target_os = "freebsd" , target_os = "macos" , target_os = "netbsd" , target_os = "openbsd" , target_os = "ios" ) ) ]
155
+ #[ cfg( any( target_os = "dragonfly" ,
156
+ target_os = "freebsd" ,
157
+ target_os = "macos" ,
158
+ target_os = "netbsd" ,
159
+ target_os = "openbsd" ,
160
+ target_os = "ios" ) ) ]
155
161
IFF_LINK1 ;
156
162
/// Non-unique address.
157
163
#[ cfg( any( target_os = "solaris" ) ) ]
@@ -163,10 +169,18 @@ libc_bitflags!(
163
169
#[ cfg( any( target_os = "android" , target_os = "fuchsia" , target_os = "linux" ) ) ]
164
170
IFF_AUTOMEDIA ;
165
171
/// Per link layer defined bit.
166
- #[ cfg( any( target_os = "bitrig" , target_os = "dragonfly" , target_os = "freebsd" , target_os = "macos" , target_os = "netbsd" , target_os = "openbsd" , target_os = "ios" ) ) ]
172
+ #[ cfg( any( target_os = "dragonfly" ,
173
+ target_os = "freebsd" ,
174
+ target_os = "macos" ,
175
+ target_os = "netbsd" ,
176
+ target_os = "openbsd" ,
177
+ target_os = "ios" ) ) ]
167
178
IFF_LINK2 ;
168
179
/// Use alternate physical connection.
169
- #[ cfg( any( target_os = "dragonfly" , target_os = "freebsd" , target_os = "macos" , target_os = "ios" ) ) ]
180
+ #[ cfg( any( target_os = "dragonfly" ,
181
+ target_os = "freebsd" ,
182
+ target_os = "macos" ,
183
+ target_os = "ios" ) ) ]
170
184
IFF_ALTPHYS ;
171
185
/// DHCP controlls interface.
172
186
#[ cfg( any( target_os = "solaris" ) ) ]
0 commit comments