worldstone: add -s for statistical profiling
[minix.git] / man / man2 / sendto.2
blobf7019ccbed9689f1b659a93c2b8d403794e8f102
1 .TH SENDTO 2
2 .SH NAME
3 sendto \- send a message through a socket
4 .SH SYNOPSIS
5 .ft B
6 #include <sys/socket.h>
8 .in +5
9 .ti -5
10 ssize_t sendto(int \fIsd\fP, const void * \fImsg\fP, size_t \fImsg_len\fP, int \fIflags\fP, const struct sockaddr * \fIdest_addr\fP, socklet_t \fIdest_addr_len\fP);
11 .br
12 .ft P
13 .SH DESCRIPTION
14 sendto() sends a message to another socket. It may be used with
15 connectionless and connection oriented sockets. At present, minix 
16 doesn't support setting \fIflags\fP to any value other than 0.
17 .SH RETURN VALUES
18 On success, this function returns 0. On error, -1 is returned and
19 \fIerrno\fP is set.
20 .SH ERRORS
21 .TP 15
22 [ENOSYS]
23 The operation is not implemented for the given socket.
24 .TP 15
25 [ENOTCONN]
26 The socket is not connected; there is no peer.
27 .TP 15
28 [EFAULT]
29 The message pointed to by \fImsg\fP is not in a
30 valid part of the process address space.
31 .TP 15
32 [EAFNOSUPPORT]
33 The address family is not supported by send().
34 .TP 15
35 [ENAMETOOLONG]
36 The length of sun_path is longer than UNIX_PATH_MAX.
37 .TP 15
38 [ENOENT]
39 The sun_path is null.
40 .TP 15
41 [EPIPE]
42 The socket is shutdown for writing.
43 .TP 15
44 [EMSGSIZE]
45 The message is too big.
46 .SH SEE ALSO
47 .BR send(2)
48 .BR socket(2)
49 .BR recv(2)
50 .BR recvfrom(2)