1 .\" Copyright (c) 1983, 1990, 1991, 1993
2 .\" The Regents of the University of California. All rights reserved.
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\" notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\" notice, this list of conditions and the following disclaimer in the
11 .\" documentation and/or other materials provided with the distribution.
12 .\" 3. All advertising materials mentioning features or use of this software
13 .\" must display the following acknowledgement:
14 .\" This product includes software developed by the University of
15 .\" California, Berkeley and its contributors.
16 .\" 4. Neither the name of the University nor the names of its contributors
17 .\" may be used to endorse or promote products derived from this software
18 .\" without specific prior written permission.
20 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 .\" @(#)recv.2 8.3 (Berkeley) 2/21/94
41 .Nd receive a message from a socket
56 .Fa "void *restrict buffer"
59 .Fa "struct sockaddr *restrict address"
60 .Fa "socklen_t *restrict address_len"
65 .Fa "struct msghdr *message"
74 are used to receive messages from a socket,
75 and may be used to receive data on a socket whether or not
76 it is connection-oriented.
81 and the socket is not connection-oriented,
82 the source address of the message is filled in.
86 is a value-result argument, initialized to the size of
87 the buffer associated with
89 and modified on return to indicate the actual size of the
94 function is normally used only on a
103 null pointer passed as its
106 As it is redundant, it may not be supported in future releases.
108 All three routines return the length of the message on successful
110 If a message is too long to fit in the supplied buffer,
111 excess bytes may be discarded depending on the type of socket
112 the message is received from (see
115 If no messages are available at the socket, the
116 receive call waits for a message to arrive, unless
117 the socket is nonblocking (see
119 in which case the value
120 -1 is returned and the external variable
124 The receive calls normally return any data available,
125 up to the requested amount,
126 rather than waiting for receipt of the full amount requested;
127 this behavior is affected by the socket-level options
136 system call may be used to determine when more data arrive.
138 If no messages are available to be received and the peer has
139 performed an orderly shutdown, the value 0 is returned.
145 function is formed by
147 one or more of the values:
148 .Bl -column MSG_WAITALL -offset indent
149 .It Dv MSG_OOB Ta process out-of-band data
150 .It Dv MSG_PEEK Ta peek at incoming message
151 .It Dv MSG_WAITALL Ta wait for full request or error
156 flag requests receipt of out-of-band data
157 that would not be received in the normal data stream.
158 Some protocols place expedited data at the head of the normal
159 data queue, and thus this flag cannot be used with such protocols.
162 flag causes the receive operation to return data
163 from the beginning of the receive queue without removing that
165 Thus, a subsequent receive call will return the same data.
168 flag requests that the operation block until
169 the full request is satisfied.
170 However, the call may still return less data than requested
171 if a signal is caught, an error or disconnect occurs,
172 or the next data to be received is of a different type than that returned.
178 structure to minimize the number of directly supplied arguments.
179 This structure has the following form, as defined in
184 void *msg_name; /* optional address */
185 socklen_t msg_namelen; /* size of address */
186 struct iovec *msg_iov; /* scatter/gather array */
187 int msg_iovlen; /* # elements in msg_iov */
188 void *msg_control; /* ancillary data, see below */
189 socklen_t msg_controllen; /* ancillary data buffer len */
190 int msg_flags; /* flags on received message */
198 specify the destination address if the socket is unconnected;
200 may be given as a null pointer if no names are desired or required.
207 describe scatter gather locations, as discussed in
210 shall be set to the dimension of this array. In each
214 field specifies a storage area and the
216 field gives its size in bytes. Each storage area indicated by
218 is filled with received data in turn until all of the received data
219 is stored or all of the areas have been filled.
226 points to a buffer for other protocol control related messages
227 or other miscellaneous ancillary data.
228 The messages are of the form:
231 u_int cmsg_len; /* data byte count, including hdr */
232 int cmsg_level; /* originating protocol */
233 int cmsg_type; /* protocol-specific type */
235 u_char cmsg_data[]; */
239 As an example, one could use this to learn of changes
240 in the data-stream in XNS/SPP,
241 or in ISO, to obtain user-connection-request data by requesting a
243 with no data buffer provided immediately after an
247 Open file descriptors are now passed as ancillary data for
260 field is set on return according to the message received.
262 indicates end-of-record;
263 the data returned completed a record.
264 .\" (generally used with sockets of type
265 .\".Dv SOCK_SEQPACKET ) .
268 the trailing portion of a datagram was discarded
269 because the datagram was larger than the buffer supplied.
271 indicates that some control data were discarded
272 due to lack of space in the buffer for ancillary data.
274 is returned to indicate that expedited or out-of-band data were received.
276 These calls return the number of bytes received, or -1
277 if an error occurred.
279 For TCP sockets, the return value 0 means the peer has closed its
280 half side of the connection.
286 The socket is marked non-blocking, and the receive operation
288 a receive timeout had been set,
289 and the timeout expired before data were received.
294 is an invalid descriptor.
297 The connection is closed by the peer
298 during a receive attempt on a socket.
301 The receive buffer pointer(s) point outside the process's
305 The receive was interrupted by delivery of a signal before
306 any data were available.
309 MSG_OOB is set, but no out-of-band data is available.
312 An attempt to allocate a memory buffer fails.
315 The socket is associated with a connection-oriented protocol
316 and has not been connected (see
325 does not refer to a socket.
328 The type and/or protocol of
330 do not support the option(s) specified in
334 The connection timed out.
339 call may also fail if:
343 The total of the iov_len values overflows a ssize_t.
348 call may also fail if:
356 structure pointed to by message is less than or equal to 0, or is greater than
360 Insufficient memory is available.