NAME
lliisstteenn - listen for connections on a socket
SYNOPSIS
##iinncclluuddee <
int lliisstteenn(int socket, int backlog);> DESCRIPTION
Creation of socket-based connections requires several operations. First,
a socket is created with socket(2). Next, a willingness to accept incom-
ing connections and a queue limit for incoming connections are specified with lliisstteenn(). Finally, the connections are accepted with accept(2). The lliisstteenn() call applies only to sockets of type SOCKSTREAM or SOCKSEQPACKET. The backlog parameter defines the maximum length for the queue of pending connections. If a connection request arrives with the queue full, theclient may receive an error with an indication of ECONNREFUSED. Alterna-
tively, if the underlying protocol supports retransmission, the request may be ignored so that retries may succeed.RETURN VALUES
The lliisstteenn() function returns the value 0 if successful; otherwise thevalue -1 is returned and the global variable errno is set to indicate the
error. EERRRROORRSS LLiisstteenn() will fail if: [EACCES] The current process has insufficient privileges. [EBADF] The argument socket is not a valid file descriptor. [EDESTADDRREQ] The socket is not bound to a local address and theprotocol does not support listening on an unbound
socket. [EINVAL] socket is already connected. [ENOTSOCK] The argument socket does not reference a socket.[EOPNOTSUPP] The socket is not of a type that supports the opera-
tion lliisstteenn().SEE ALSO
accept(2), connect(2), socket(2)BUGS
The backlog is currently limited (silently) to 128. HISTORY The lliisstteenn() function call appeared in 4.2BSD. 4.2 Berkeley Distribution December 11, 1993 4.2 Berkeley Distribution