Method lrs::socket::Socket::set_oob_inline

Sets whether this socket places out-of-band data directly into the data stream.

Syntax

impl Socket {
    fn set_oob_inline(&self, val: bool) -> Result<(), Errno>
}

Arguments

NameDescription
val

Whether this socket places out-of-band data directly into the data stream.

Remarks

If this option is not set, out-of-band data can only be received with the OutOfBand message option.

See also