Lines Matching full:socket
16 applications to use a single socket to talk to any other process in the
18 to N*N if you use a connection-oriented socket transport like TCP.
30 the end point of a connection. All socket operations that involve
42 * Socket interface
44 socket. The next section will cover the details. At any rate,
45 all I/O is performed through the standard BSD socket API.
52 attaches it to the socket. Once bound, the transport assignment
61 Socket Interface
71 fd = socket(PF_RDS, SOCK_SEQPACKET, 0);
72 This creates a new, unbound RDS socket.
75 RDS honors the send and receive buffer size socket options.
77 a socket. A message is queued when sendmsg is called, and
90 This binds the socket to a local IP address and port, and a
109 Receives a message that was queued to this socket. The sockets
126 incoming message queued to the socket, or a pending notification,
143 specific destination on this particular socket.
224 Messages waiting in the receive queue on the receiving socket
227 number of bytes queued equals or exceeds rcvbuf then the socket
228 is congested. All sends attempted to this socket's address
256 The general layer handles the socket API, congestion handling,
269 be sent and sets header fields as needed, based on the socket API.
275 while the socket is awoken. It is then passed back to the transport
278 per-socket information
294 The first time an attempt is made by an RDS socket to send data to