Receives a message on a connected socket and stores it in multiple buffers.
impl Socket {
fn scatter_recv(&self, buf: &mut [&mut [u8]], flags: MsgFlags) -> Result<usize, Errno>
}| Name | Description |
|---|---|
| buf | The buffers in which the message will be stored. |
| flags | Flags that can change the behavior of the operation. |
Returns the number of bytes received.