File tree Expand file tree Collapse file tree 1 file changed +4
-8
lines changed Expand file tree Collapse file tree 1 file changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -67,6 +67,7 @@ libc_bitflags!(
67
67
/// [`netdevice(7)`](http://man7.org/linux/man-pages/man7/netdevice.7.html))
68
68
#[ cfg( any( target_os = "android" ,
69
69
target_os = "dragonfly" ,
70
+ target_os = "freebsd" ,
70
71
target_os = "fuchsia" ,
71
72
target_os = "ios" ,
72
73
target_os = "linux" ,
@@ -75,9 +76,6 @@ libc_bitflags!(
75
76
target_os = "openbsd" ,
76
77
target_os = "solaris" ) ) ]
77
78
IFF_RUNNING ;
78
- /// Resources allocated.
79
- #[ cfg( any( target_os = "freebsd" ) ) ]
80
- IFF_DRV_RUNNING ;
81
79
82
80
// bitmask: 0x80
83
81
/// No arp protocol, L2 destination address not set. (see
@@ -99,11 +97,9 @@ libc_bitflags!(
99
97
/// [`netdevice(7)`](http://man7.org/linux/man-pages/man7/netdevice.7.html))
100
98
#[ cfg( any( target_os = "android" , target_os = "fuchsia" , target_os = "linux" ) ) ]
101
99
IFF_MASTER ;
102
- /// tx hardware queue is full
103
- #[ cfg( target_os = "freebsd" ) ]
104
- IFF_DRV_OACTIVE ;
105
- /// transmission in progress
106
- #[ cfg( any( target_os = "macos" ,
100
+ /// transmission in progress, tx hardware queue is full
101
+ #[ cfg( any( target_os = "freebsd" ,
102
+ target_os = "macos" ,
107
103
target_os = "netbsd" ,
108
104
target_os = "openbsd" ,
109
105
target_os = "ios" ) ) ]
You can’t perform that action at this time.
0 commit comments