[][src]Function linux::syscall::sendmsg

pub fn sendmsg(sockfd: c_int, msg: &msghdr, flags: c_int) -> ssize_t

Sends a message on a socket.

[argument, sockfd] The socket over which to send.

[argument, msghdr] The message buffer.

[argument, flags] Flags used while sending.

[return_value] Returns the number of bytes sent or an error value.

= See also

  • link:man:sendmsg(2)