File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
10
10
([ #825 ] ( https://github.com/nix-rust/nix/pull/825 ) )
11
11
- Exposed ` termios::cfmakesane ` on FreeBSD.
12
12
([ #825 ] ( https://github.com/nix-rust/nix/pull/825 ) )
13
+ - Exposed ` MSG_CMSG_CLOEXEC ` on * BSD.
14
+ ([ #825 ] ( https://github.com/nix-rust/nix/pull/825 ) )
13
15
14
16
### Changed
15
17
Original file line number Diff line number Diff line change @@ -163,7 +163,12 @@ libc_bitflags!{
163
163
/// [open(2)](http://pubs.opengroup.org/onlinepubs/9699919799/functions/open.html).
164
164
///
165
165
/// Only used in [`recvmsg`](fn.recvmsg.html) function.
166
- #[ cfg( any( target_os = "linux" , target_os = "android" ) ) ]
166
+ #[ cfg( any( target_os = "android" ,
167
+ target_os = "dragonfly" ,
168
+ target_os = "freebsd" ,
169
+ target_os = "linux" ,
170
+ target_os = "netbsd" ,
171
+ target_os = "openbsd" ) ) ]
167
172
MSG_CMSG_CLOEXEC ;
168
173
}
169
174
}
You can’t perform that action at this time.
0 commit comments