Lines Matching +full:scatter +full:- +full:gather
62 #define SOCK_RDM 4 /* reliably-delivered message */
66 messages may be lost or duplicated and may arrive out-of-order.
70 arrive unduplicated and in-order, the sender is notified if
74 The SOCK_STREAM type models connection-based virtual circuits: two-way
77 The SOCK_SEQPACKET type models a connection-based,
78 full-duplex, reliable, sequenced packet exchange;
80 duplicated or presented out-of-order.
82 out-of-band transmission to send out-of-band data.
114 An unconnected socket descriptor of a connection-oriented type
146 Once a binding is made to a connection-oriented socket,
163 the call will wait for a connection unless non-blocking I/O has been enabled.
239 high-priority out-of-band messages, as follows:
243 #define MSG_OOB 0x2 /* process out-of-band data */
246 Scatter/gather and exchanging access rights
248 It is possible scatter and gather data and to exchange access rights
260 struct iov *msg_iov; /* scatter/gather array */
269 The \fImsg_iov\fP and \fImsg_iovlen\fP describe the scatter/gather
291 or a file with blocking or non-blocking input/output
294 Shutting down halves of full-duplex connections
296 A process that has a full-duplex socket such as a virtual circuit
307 For example, a shutdown for writing might produce an end-of-file
314 implementation- or protocol-specific facilities.
341 the SOCK_STREAM abstraction provides pipe-like
343 reliable message-style communications.
372 Each is layered atop the transport-level Internet Protocol (IP).
386 The 32-bit address is composed of network and host parts;
398 The Internet domain allows the super-user access to the raw facilities
405 and enables user-level implementations of special-purpose protocols
406 such as inter-gateway routing protocols.