SENDTO(3XNET) | X/Open Networking Services Library Functions | SENDTO(3XNET) |
sendto - send a message on a socket
cc [ flag... ] file... -lxnet [ library ... ] #include <sys/socket.h> ssize_t sendto(int socket, const void *message, size_t length, int flags,
const struct sockaddr *dest_addr, socklen_t dest_len);
The sendto() function sends a message through a connection-mode or connectionless-mode socket. If the socket is connectionless-mode, the message will be sent to the address specified by dest_addr. If the socket is connection-mode, dest_addr is ignored.
If the socket protocol supports broadcast and the specified address is a broadcast address for the socket protocol, sendto() will fail if the SO_BROADCAST option is not set for the socket.
The dest_addr argument specifies the address of the target. The length argument specifies the length of the message.
Successful completion of a call to sendto() does not guarantee delivery of the message. A return value of −1 indicates only locally-detected errors.
If space is not available at the sending socket to hold the message to be transmitted and the socket file descriptor does not have O_NONBLOCK set, sendto() blocks until space is available. If space is not available at the sending socket to hold the message to be transmitted and the socket file descriptor does have O_NONBLOCK set, sendto() will fail.
The socket in use may require the process to have appropriate privileges to use the sendto() function.
The function takes the following arguments:
socket
message
length
flags
MSG_EOR
MSG_OOB
MSG_NOSIGNAL
dest_addr
dest_len
The select(3C) and poll(2) functions can be used to determine when it is possible to send more data.
Upon successful completion, sendto() returns the number of bytes sent. Otherwise, -1 is returned and errno is set to indicate the error.
In addition to the errors documented below, an asynchronous error generated by the underlying socket protocol may be returned. For the full list of errors, please see the corresponding socket protocol manual page. For example, for a list of TCP errors, please see tcp(4P).
The sendto() function will fail if:
EAFNOSUPPORT
EAGAIN
EWOULDBLOCK
EBADF
ECONNRESET
EFAULT
EINTR
EMSGSIZE
ENOTCONN
ENOTSOCK
EOPNOTSUPP
EPIPE
If the address family of the socket is AF_UNIX, then sendto() will fail if:
EIO
ELOOP
ENAMETOOLONG
ENOENT
ENOTDIR
The sendto() function may fail if:
EACCES
EDESTADDRREQ
EHOSTUNREACH
EINVAL
EIO
EISCONN
ENETDOWN
ENETUNREACH
ENOBUFS
ENOMEM
ENOSR
If the address family of the socket is AF_UNIX, then sendto() may fail if:
ENAMETOOLONG
See attributes(7) for descriptions of the following attributes:
ATTRIBUTE TYPE | ATTRIBUTE VALUE |
Interface Stability | Standard |
MT-Level | MT-Safe |
poll(2), select(3C), sockaddr(3SOCKET), getsockopt(3XNET), recv(3XNET), recvfrom(3XNET), recvmsg(3XNET), send(3XNET), sendmsg(3XNET), setsockopt(3XNET), shutdown(3XNET), socket(3XNET), tcp(4P), attributes(7), standards(7)
September 10, 2018 | OmniOS |