3 recvmsg \- receive a message through a socket
6 #include <sys/socket.h>
10 ssize_t recvmsg(int \fIsd\fP, struct msghdr * \fImsg\fP, int \fIflags\fP);
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
19 On success, this function returns 0. On error, -1 is returned and
24 The operation is not implemented for the given socket.
27 The socket is shutdown for reading.
37 This function first appeared in Minix 3.1.8.