Manual Pages for Linux CentOS command on man sendmmsg
MyWebUniversity

Manual Pages for Linux CentOS command on man sendmmsg

SENDMMSG(2) Linux Programmer's Manual SENDMMSG(2)

NAME

sendmmsg - send multiple messages on a socket SYNOPSIS

#define GNUSOURCE

#include int sendmmsg(int sockfd, struct mmsghdr *msgvec, unsigned int vlen, unsigned int flags); DESCRIPTION The sendmmsg() system call is an extension of sendmsg(2) that allows the caller to transmit multiple messages on a socket using a single system call. (This has performance benefits for some applications.) The sockfd argument is the file descriptor of the socket on which data is to be transmitted. The msgvec argument is a pointer to an array of mmsghdr structures. The size of this array is specified in vlen. The mmsghdr structure is defined in as: struct mmsghdr { struct msghdr msghdr; /* Message header */ unsigned int msglen; /* Number of bytes transmitted */ }; The msghdr field is a msghdr structure, as described in sendmsg(2). The msglen field is used to return the number of bytes sent from the message in msghdr (i.e., the same as the return value from a single sendmsg(2) call). The flags argument contains flags ORed together. The flags are the same as for sendmsg(2). A blocking sendmmsg() call blocks until vlen messages have been sent. A nonblocking call sends as many messages as possible (up to the limit specified by vlen) and returns immediately. On return from sendmmsg(), the msglen fields of successive elements of msgvec are updated to contain the number of bytes transmitted from the corresponding msghdr. The return value of the call indicates the num‐ ber of elements of msgvec that have been updated. RETURN VALUE On success, sendmmsg() returns the number of messages sent from msgvec; if this is less than vlen, the caller can retry with a further send‐ mmsg() call to send the remaining messages.

On error, -1 is returned, and errno is set to indicate the error. ERRORS Errors are as for sendmsg(2). An error is returned only if no data‐ grams could be sent. See also BUGS. VERSIONS The sendmmsg() system call was added in Linux 3.0. Support in glibc was added in version 2.14. CONFORMING TO

sendmmsg() is Linux-specific. NOTES The value specified in vlen is capped to UIOMAXIOV (1024). BUGS If an error occurs after at least one message has been sent, the call succeeds, and returns the number of messages sent. The error code is lost. The caller can retry the transmission, starting at the first failed message, but there is no guarantee that, if an error is returned, it will be the same as the one that was lost on the previous call. EXAMPLE The example below uses sendmmsg() to send onetwo and three in two dis‐ tinct UDP datagrams using one system call. The contents of the first datagram originates from a pair of buffers.

#define GNUSOURCE

#include

#include

#include

#include

#include

#include int main(void) { int sockfd; struct sockaddrin sa; struct mmsghdr msg[2]; struct iovec msg1[2], msg2; int retval; sockfd = socket(AFINET, SOCKDGRAM, 0);

if (sockfd == -1) { perror("socket()"); exit(EXITFAILURE); } sa.sinfamily = AFINET; sa.sinaddr.saddr = htonl(INADDRLOOPBACK); sa.sinport = htons(1234);

if (connect(sockfd, (struct sockaddr *) &sa, sizeof(sa)) == -1) { perror("connect()"); exit(EXITFAILURE); } memset(msg1, 0, sizeof(msg1)); msg1[0].iovbase = "one"; msg1[0].iovlen = 3; msg1[1].iovbase = "two"; msg1[1].iovlen = 3; memset(&msg2, 0, sizeof(msg2)); msg2.iovbase = "three"; msg2.iovlen = 5; memset(msg, 0, sizeof(msg)); msg[0].msghdr.msgiov = msg1; msg[0].msghdr.msgiovlen = 2; msg[1].msghdr.msgiov = &msg2; msg[1].msghdr.msgiovlen = 1; retval = sendmmsg(sockfd, msg, 2, 0);

if (retval == -1) perror("sendmmsg()"); else

printf("%d messages sent\n", retval); exit(0); } SEE ALSO recvmmsg(2), sendmsg(2), socket(2), socket(7) COLOPHON

This page is part of release 3.53 of the Linux man-pages project. A description of the project, and information about reporting bugs, can

be found at http://www.kernel.org/doc/man-pages/.

Linux 2012-12-16 SENDMMSG(2)




Contact us      |      About us      |      Term of use      |       Copyright © 2000-2019 MyWebUniversity.com ™