Lines Matching refs: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
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
65 AF_RDS and PF_RDS are the domain type to be used with socket(2)
66 to create RDS sockets. SOL_RDS is the socket-level to be used
67 with setsockopt(2) and getsockopt(2) for RDS specific socket
70 fd = socket(PF_RDS, SOCK_SEQPACKET, 0);
71 This creates a new, unbound RDS socket.
74 RDS honors the send and receive buffer size socket options.
76 a socket. A message is queued when sendmsg is called, and
89 This binds the socket to a local IP address and port, and a
108 Receives a message that was queued to this socket. The sockets
125 incoming message queued to the socket, or a pending notification,
142 specific destination on this particular socket.
223 Messages waiting in the receive queue on the receiving socket
226 number of bytes queued equals or exceeds rcvbuf then the socket
227 is congested. All sends attempted to this socket's address
255 The general layer handles the socket API, congestion handling,
268 be sent and sets header fields as needed, based on the socket API.
274 while the socket is awoken. It is then passed back to the transport
277 per-socket information
293 The first time an attempt is made by an RDS socket to send data to