We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf5970e commit 810b24eCopy full SHA for 810b24e
src/sys/socket/mod.rs
@@ -132,6 +132,10 @@ libc_bitflags!{
132
/// [`recv()`](fn.recv.html)
133
/// or similar function shall still return this data.
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;
139
/// Enables nonblocking operation; if the operation would block,
140
/// `EAGAIN` or `EWOULDBLOCK` is returned. This provides similar
141
/// behavior to setting the `O_NONBLOCK` flag
0 commit comments