Tells the kernel not to send this message yet.
const MSG_MORE: MsgFlags = MsgFlags(cty::MSG_MORE);
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.
sendmsg(2) and MSG_MORE therein