Method lrs::socket::Socket::force_set_recv_buffer_size

Sets the maximal receive buffer size of this socket, overriding normal system limits.

Syntax

impl Socket {
    fn force_set_recv_buffer_size(&self, size: usize) -> Result<(), Errno>
}

Arguments

NameDescription
size

The maximal receive buffer size of this socket.

Remarks

The argument must be representable in a c_int. The value will be doubled by the kernel and this doubled value will be returned by a call to recv_buffer_size.

This function is different from set_recv_buffer_size in that privileged processes can override the system limits imposed on the buffer size.

See also