diff options
Diffstat (limited to 'usr/src/man/man3xnet/recv.3xnet')
| -rw-r--r-- | usr/src/man/man3xnet/recv.3xnet | 59 |
1 files changed, 8 insertions, 51 deletions
diff --git a/usr/src/man/man3xnet/recv.3xnet b/usr/src/man/man3xnet/recv.3xnet index 271c7a8cc7..ed8488e9c8 100644 --- a/usr/src/man/man3xnet/recv.3xnet +++ b/usr/src/man/man3xnet/recv.3xnet @@ -1,13 +1,13 @@ '\" te .\" Copyright (c) 1992, X/Open Company Limited All Rights Reserved Portions Copyright (c) 1998, Sun Microsystems, Inc. All Rights Reserved -.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at +.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at .\" http://www.opengroup.org/bookstore/. .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html. .\" This notice shall appear on any product containing this material. .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] -.TH recv 3XNET "10 Jun 2002" "SunOS 5.11" "X/Open Networking Services Library Functions" +.TH RECV 3XNET "Jun 10, 2002" .SH NAME recv \- receive a message from a connected socket .SH SYNOPSIS @@ -28,80 +28,66 @@ it does not permit the application to retrieve the source address of received data. The function takes the following arguments: .sp .ne 2 -.mk .na \fB\fIsocket\fR\fR .ad .RS 10n -.rt Specifies the socket file descriptor. .RE .sp .ne 2 -.mk .na \fB\fIbuffer\fR\fR .ad .RS 10n -.rt Points to a buffer where the message should be stored. .RE .sp .ne 2 -.mk .na \fB\fIlength\fR\fR .ad .RS 10n -.rt Specifies the length in bytes of the buffer pointed to by the \fIbuffer\fR argument. .RE .sp .ne 2 -.mk .na \fB\fIflags\fR\fR .ad .RS 10n -.rt Specifies the type of message reception. Values of this argument are formed by logically OR'ing zero or more of the following values: .sp .ne 2 -.mk .na \fBMSG_PEEK\fR .ad .RS 15n -.rt Peeks at an incoming message. The data is treated as unread and the next \fBrecv()\fR or similar function will still return this data. .RE .sp .ne 2 -.mk .na \fBMSG_OOB\fR .ad .RS 15n -.rt Requests out-of-band data. The significance and semantics of out-of-band data are protocol-specific. .RE .sp .ne 2 -.mk .na \fBMSG_WAITALL\fR .ad .RS 15n -.rt Requests that the function block until the full amount of data requested can be returned. The function may return a smaller amount of data if a signal is caught, if the connection is terminated, if \fBMSG_PEEK\fR was specified, or @@ -153,7 +139,6 @@ an orderly shutdown, \fBrecv()\fR returns 0. Otherwise, -1 is returned and The \fBrecv()\fR function will fail if: .sp .ne 2 -.mk .na \fB\fBEAGAIN\fR \fR .ad @@ -162,7 +147,6 @@ The \fBrecv()\fR function will fail if: \fB\fBEWOULDBLOCK\fR\fR .ad .RS 15n -.rt The socket's file descriptor is marked \fBO_NONBLOCK\fR and no data is waiting to be received; or \fBMSG_OOB\fR is set and no out-of-band data is available and either the socket's file descriptor is marked \fBO_NONBLOCK\fR or the @@ -171,101 +155,83 @@ socket does not support blocking to await out-of-band data. .sp .ne 2 -.mk .na \fB\fBEBADF\fR\fR .ad .RS 15n -.rt The \fIsocket\fR argument is not a valid file descriptor. .RE .sp .ne 2 -.mk .na \fB\fBECONNRESET\fR\fR .ad .RS 15n -.rt A connection was forcibly closed by a peer. .RE .sp .ne 2 -.mk .na \fB\fBEFAULT\fR\fR .ad .RS 15n -.rt The \fIbuffer\fR parameter can not be accessed or written. .RE .sp .ne 2 -.mk .na \fB\fBEINTR\fR\fR .ad .RS 15n -.rt The \fBrecv()\fR function was interrupted by a signal that was caught, before any data was available. .RE .sp .ne 2 -.mk .na \fB\fBEINVAL\fR\fR .ad .RS 15n -.rt The \fBMSG_OOB\fR flag is set and no out-of-band data is available. .RE .sp .ne 2 -.mk .na \fB\fBENOTCONN\fR\fR .ad .RS 15n -.rt A receive is attempted on a connection-mode socket that is not connected. .RE .sp .ne 2 -.mk .na \fB\fBENOTSOCK\fR\fR .ad .RS 15n -.rt The \fIsocket\fR argument does not refer to a socket. .RE .sp .ne 2 -.mk .na \fB\fBEOPNOTSUPP\fR\fR .ad .RS 15n -.rt The specified flags are not supported for this socket type or protocol. .RE .sp .ne 2 -.mk .na \fB\fBETIMEDOUT\fR\fR .ad .RS 15n -.rt The connection timed out during connection establishment, or due to a transmission timeout on active connection. .RE @@ -275,45 +241,37 @@ transmission timeout on active connection. The \fBrecv()\fR function may fail if: .sp .ne 2 -.mk .na \fB\fBEIO\fR\fR .ad .RS 11n -.rt An I/O error occurred while reading from or writing to the file system. .RE .sp .ne 2 -.mk .na \fB\fBENOBUFS\fR\fR .ad .RS 11n -.rt Insufficient resources were available in the system to perform the operation. .RE .sp .ne 2 -.mk .na \fB\fBENOMEM\fR\fR .ad .RS 11n -.rt Insufficient memory was available to fulfill the request. .RE .sp .ne 2 -.mk .na \fB\fBENOSR\fR\fR .ad .RS 11n -.rt There were insufficient STREAMS resources available for the operation to complete. .RE @@ -326,15 +284,14 @@ See \fBattributes\fR(5) for descriptions of the following attributes: .sp .TS -tab() box; -cw(2.75i) |cw(2.75i) -lw(2.75i) |lw(2.75i) -. -ATTRIBUTE TYPEATTRIBUTE VALUE +box; +c | c +l | l . +ATTRIBUTE TYPE ATTRIBUTE VALUE _ -Interface StabilityStandard +Interface Stability Standard _ -MT-LevelMT-Safe +MT-Level MT-Safe .TE .SH SEE ALSO |
