Lines Matching +full:domain +full:- +full:idle +full:- +full:state
10 socket \- create an endpoint for communication
14 \fBcc\fR [ \fIflag\fR ... ] \fIfile\fR ... \fB-lsocket\fR \fB -lnsl \fR [ \fIlibrary\fR ... ]
18 \fBint\fR \fBsocket\fR(\fBint\fR \fIdomain\fR, \fBint\fR \fItype\fR, \fBint\fR \fIprotocol\fR);
28 The \fIdomain\fR argument specifies the protocol family within which
88 The \fItype\fR may be augmented by a bitwise-inclusive-OR of flags from the
127 protocol family and type required. If a non-zero protocol has been specified
133 A \fBSOCK_STREAM\fR type provides sequenced, reliable, two-way connection-based
134 byte streams. An out-of-band data transmission mechanism may be supported. A
137 provide a sequenced, reliable, two-way connection-based data transmission path
147 The \fIprotocol\fR parameter is a protocol-family-specific value which
155 Sockets of type \fBSOCK_STREAM\fR are full-duplex byte streams, similar to
156 pipes. A stream socket must be in a \fIconnected\fR state before any data may
161 completed, a \fBclose\fR(2) may be performed. Out-of-band data may also be
173 error is then indicated if no response can be elicited on an otherwise idle
192 \fBSIGURG\fR signal when the out-of-band data arrives. It can also enable
193 non-blocking I/O.
203 Otherwise, -1 is returned and \fBerrno\fR is set to indicate the error.
241 The per-process descriptor table is full.
311 MT-Level Safe