t40c term[] count fix
[minix.git] / man / man2 / send.2
blobff43842ff3acce433ffcccae0cd49b91c9b13803
1 .TH SEND 2
2 .SH NAME
3 send \- 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 send(int \fIsd\fP, const void * \fImsg\fP, size_t \fImsg_len\fP, int \fIflags\fP);
11 .br
12 .ft P
13 .SH DESCRIPTION
14 send() sends a message to another socket. It may only be used with 
15 connected sockets. At present, minix doesn't support setting 
16 \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 [EPIPE]
36 The socket is shutdown for writing.
37 .TP 15
38 [EMSGSIZE]
39 The message is too big.
40 .SH SEE ALSO
41 .BR socket(2)
42 .BR sendto(2)
43 .BR recv(2)
44 .BR recvfrom(2)