Blame man-pages-posix-2013-a/man3p/listen.3p

Packit 7cfc04
'\" et
Packit 7cfc04
.TH LISTEN "3P" 2013 "IEEE/The Open Group" "POSIX Programmer's Manual"
Packit 7cfc04
.SH PROLOG
Packit 7cfc04
This manual page is part of the POSIX Programmer's Manual.
Packit 7cfc04
The Linux implementation of this interface may differ (consult
Packit 7cfc04
the corresponding Linux manual page for details of Linux behavior),
Packit 7cfc04
or the interface may not be implemented on Linux.
Packit 7cfc04
Packit 7cfc04
.SH NAME
Packit 7cfc04
listen
Packit 7cfc04
\(em listen for socket connections and limit the queue of incoming
Packit 7cfc04
connections
Packit 7cfc04
.SH SYNOPSIS
Packit 7cfc04
.LP
Packit 7cfc04
.nf
Packit 7cfc04
#include <sys/socket.h>
Packit 7cfc04
.P
Packit 7cfc04
int listen(int \fIsocket\fP, int \fIbacklog\fP);
Packit 7cfc04
.fi
Packit 7cfc04
.SH DESCRIPTION
Packit 7cfc04
The
Packit 7cfc04
\fIlisten\fR()
Packit 7cfc04
function shall mark a connection-mode socket, specified by the
Packit 7cfc04
.IR socket
Packit 7cfc04
argument, as accepting connections.
Packit 7cfc04
.P
Packit 7cfc04
The
Packit 7cfc04
.IR backlog
Packit 7cfc04
argument provides a hint to the implementation which the implementation
Packit 7cfc04
shall use to limit the number of outstanding connections in the
Packit 7cfc04
socket's listen queue. Implementations may impose a limit on
Packit 7cfc04
.IR backlog
Packit 7cfc04
and silently reduce the specified value. Normally, a larger
Packit 7cfc04
.IR backlog
Packit 7cfc04
argument value shall result in a larger or equal length of the listen
Packit 7cfc04
queue. Implementations shall support values of
Packit 7cfc04
.IR backlog
Packit 7cfc04
up to SOMAXCONN, defined in
Packit 7cfc04
.IR <sys/socket.h> .
Packit 7cfc04
.P
Packit 7cfc04
The implementation may include incomplete connections in its listen
Packit 7cfc04
queue. The limits on the number of incomplete connections and completed
Packit 7cfc04
connections queued may be different.
Packit 7cfc04
.P
Packit 7cfc04
The implementation may have an upper limit on the length of the listen
Packit 7cfc04
queue\(emeither global or per accepting socket. If
Packit 7cfc04
.IR backlog
Packit 7cfc04
exceeds this limit, the length of the listen queue is set to the
Packit 7cfc04
limit.
Packit 7cfc04
.P
Packit 7cfc04
If
Packit 7cfc04
\fIlisten\fR()
Packit 7cfc04
is called with a
Packit 7cfc04
.IR backlog
Packit 7cfc04
argument value that is less than 0, the function behaves as if it had
Packit 7cfc04
been called with a
Packit 7cfc04
.IR backlog
Packit 7cfc04
argument value of 0.
Packit 7cfc04
.P
Packit 7cfc04
A
Packit 7cfc04
.IR backlog
Packit 7cfc04
argument of 0 may allow the socket to accept connections, in which case
Packit 7cfc04
the length of the listen queue may be set to an
Packit 7cfc04
implementation-defined minimum value.
Packit 7cfc04
.P
Packit 7cfc04
The socket in use may require the process to have appropriate
Packit 7cfc04
privileges to use the
Packit 7cfc04
\fIlisten\fR()
Packit 7cfc04
function.
Packit 7cfc04
.SH "RETURN VALUE"
Packit 7cfc04
Upon successful completions,
Packit 7cfc04
\fIlisten\fR()
Packit 7cfc04
shall return 0; otherwise, \(mi1 shall be returned and
Packit 7cfc04
.IR errno
Packit 7cfc04
set to indicate the error.
Packit 7cfc04
.SH ERRORS
Packit 7cfc04
The
Packit 7cfc04
\fIlisten\fR()
Packit 7cfc04
function shall fail if:
Packit 7cfc04
.TP
Packit 7cfc04
.BR EBADF
Packit 7cfc04
The
Packit 7cfc04
.IR socket
Packit 7cfc04
argument is not a valid file descriptor.
Packit 7cfc04
.TP
Packit 7cfc04
.BR EDESTADDRREQ
Packit 7cfc04
.br
Packit 7cfc04
The socket is not bound to a local address, and the protocol does not
Packit 7cfc04
support listening on an unbound socket.
Packit 7cfc04
.TP
Packit 7cfc04
.BR EINVAL
Packit 7cfc04
The
Packit 7cfc04
.IR socket
Packit 7cfc04
is already connected.
Packit 7cfc04
.TP
Packit 7cfc04
.BR ENOTSOCK
Packit 7cfc04
The
Packit 7cfc04
.IR socket
Packit 7cfc04
argument does not refer to a socket.
Packit 7cfc04
.TP
Packit 7cfc04
.BR EOPNOTSUPP
Packit 7cfc04
The socket protocol does not support
Packit 7cfc04
\fIlisten\fR().
Packit 7cfc04
.P
Packit 7cfc04
The
Packit 7cfc04
\fIlisten\fR()
Packit 7cfc04
function may fail if:
Packit 7cfc04
.TP
Packit 7cfc04
.BR EACCES
Packit 7cfc04
The calling process does not have appropriate privileges.
Packit 7cfc04
.TP
Packit 7cfc04
.BR EINVAL
Packit 7cfc04
The
Packit 7cfc04
.IR socket
Packit 7cfc04
has been shut down.
Packit 7cfc04
.TP
Packit 7cfc04
.BR ENOBUFS
Packit 7cfc04
Insufficient resources are available in the system to complete the
Packit 7cfc04
call.
Packit 7cfc04
.LP
Packit 7cfc04
.IR "The following sections are informative."
Packit 7cfc04
.SH "EXAMPLES"
Packit 7cfc04
None.
Packit 7cfc04
.SH "APPLICATION USAGE"
Packit 7cfc04
None.
Packit 7cfc04
.SH "RATIONALE"
Packit 7cfc04
None.
Packit 7cfc04
.SH "FUTURE DIRECTIONS"
Packit 7cfc04
None.
Packit 7cfc04
.SH "SEE ALSO"
Packit 7cfc04
.IR "\fIaccept\fR\^(\|)",
Packit 7cfc04
.IR "\fIconnect\fR\^(\|)",
Packit 7cfc04
.IR "\fIsocket\fR\^(\|)"
Packit 7cfc04
.P
Packit 7cfc04
The Base Definitions volume of POSIX.1\(hy2008,
Packit 7cfc04
.IR "\fB<sys_socket.h>\fP"
Packit 7cfc04
.SH COPYRIGHT
Packit 7cfc04
Portions of this text are reprinted and reproduced in electronic form
Packit 7cfc04
from IEEE Std 1003.1, 2013 Edition, Standard for Information Technology
Packit 7cfc04
-- Portable Operating System Interface (POSIX), The Open Group Base
Packit 7cfc04
Specifications Issue 7, Copyright (C) 2013 by the Institute of
Packit 7cfc04
Electrical and Electronics Engineers, Inc and The Open Group.
Packit 7cfc04
(This is POSIX.1-2008 with the 2013 Technical Corrigendum 1 applied.) In the
Packit 7cfc04
event of any discrepancy between this version and the original IEEE and
Packit 7cfc04
The Open Group Standard, the original IEEE and The Open Group Standard
Packit 7cfc04
is the referee document. The original Standard can be obtained online at
Packit 7cfc04
http://www.unix.org/online.html .
Packit 7cfc04
Packit 7cfc04
Any typographical or formatting errors that appear
Packit 7cfc04
in this page are most likely
Packit 7cfc04
to have been introduced during the conversion of the source files to
Packit 7cfc04
man page format. To report such errors, see
Packit 7cfc04
https://www.kernel.org/doc/man-pages/reporting_bugs.html .