Constant lrs::socket::msg::MSG_MORE

Tells the kernel not to send this message yet.

Syntax

const MSG_MORE: MsgFlags = MsgFlags(cty::MSG_MORE);

Remarks

This can be used when sending messages to assemble a message inside the kernel. The kernel will not send the message until it a send call without this flag happens.

See also