procfs: make ipc vectors available
[minix.git] / man / man2 / recvfrom.2
blob45ccb404a392708f518889131a75e202b69a8219
1 .TH RECVFROM 2
2 .SH NAME
3 recvfrom \- receive 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 recvfrom(int \fIsd\fP, void * \fImsg\fP, size_t \fImsg_len\fP, int \fIflags\fP, struct sockaddr * \fIsrc_addr\fP, socklet_t * \fIsrc_addr_len\fP);
11 .br
12 .ft P
13 .SH DESCRIPTION
14 recvfrom() receives a message from another socket. It may be
15 used with connectionless and connection oriented sockets.
16 At present, minix doesn't support setting \fIflags\fP to any
17 value other than 0.
18 .SH RETURN VALUES
19 On success, this function returns 0. On error, -1 is returned and
20 \fIerrno\fP is set.
21 .SH ERRORS
22 .TP 15
23 [ENOSYS]
24 The operation is not implemented for the given socket.
25 .TP 15
26 [EPIPE]
27 The socket is shutdown for reading.
28 .SH SEE ALSO
29 .BR socket(2),
30 .BR send(2)
31 .BR sendto(2)
32 .BR recv(2)