File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
17
17
18
18
ioctl_read_bad! (tcgets , libc :: TCGETS , libc :: termios );
19
19
```
20
+ - Added ` MSG_WAITALL ` to ` MsgFlags ` in ` sys::socket ` .
21
+ ([ #1079 ] ( https://github.com/nix-rust/nix/pull/1079 ) )
20
22
21
23
### Changed
22
24
### Fixed
Original file line number Diff line number Diff line change @@ -132,6 +132,10 @@ libc_bitflags!{
132
132
/// [`recv()`](fn.recv.html)
133
133
/// or similar function shall still return this data.
134
134
MSG_PEEK ;
135
+ /// Receive operation blocks until the full amount of data can be
136
+ /// returned. The function may return smaller amount of data if a signal
137
+ /// is caught, an error or disconnect occurs.
138
+ MSG_WAITALL ;
135
139
/// Enables nonblocking operation; if the operation would block,
136
140
/// `EAGAIN` or `EWOULDBLOCK` is returned. This provides similar
137
141
/// behavior to setting the `O_NONBLOCK` flag
You can’t perform that action at this time.
0 commit comments