summaryrefslogtreecommitdiffstats
path: root/man2/listen.2
diff options
context:
space:
mode:
Diffstat (limited to 'man2/listen.2')
-rw-r--r--man2/listen.226
1 files changed, 13 insertions, 13 deletions
diff --git a/man2/listen.2 b/man2/listen.2
index 6ee5ad11a..7843f1c64 100644
--- a/man2/listen.2
+++ b/man2/listen.2
@@ -32,7 +32,7 @@ marks the socket referred to by
.I sockfd
as a passive socket, that is, as a socket that will
be used to accept incoming connection requests using
-.BR accept (2).
+.MR accept 2 .
.P
The
.I sockfd
@@ -73,7 +73,7 @@ are currently in use.
See the discussion of
.I /proc/sys/net/ipv4/ip_local_port_range
in
-.BR ip (7).
+.MR ip 7 .
.TP
.B EBADF
The argument
@@ -99,12 +99,12 @@ To accept connections, the following steps are performed:
.RS 4
.IP (1) 5
A socket is created with
-.BR socket (2).
+.MR socket 2 .
.IP (2)
The socket is bound to a local address using
-.BR bind (2),
+.MR bind 2 ,
so that other sockets may be
-.BR connect (2)ed
+.MR connect 2 ed
to it.
.IP (3)
A willingness to accept incoming connections and a queue limit for incoming
@@ -112,7 +112,7 @@ connections are specified with
.BR listen ().
.IP (4)
Connections are accepted with
-.BR accept (2).
+.MR accept 2 .
.RE
.P
The behavior of the
@@ -128,7 +128,7 @@ can be set using
When syncookies are enabled there is no logical maximum
length and this setting is ignored.
See
-.BR tcp (7)
+.MR tcp 7
for more information.
.P
If the
@@ -146,10 +146,10 @@ with the value 128.
.\" (and some BSD-derived systems) limit the backlog to 5.
.SH EXAMPLES
See
-.BR bind (2).
+.MR bind 2 .
.SH SEE ALSO
-.BR accept (2),
-.BR bind (2),
-.BR connect (2),
-.BR socket (2),
-.BR socket (7)
+.MR accept 2 ,
+.MR bind 2 ,
+.MR connect 2 ,
+.MR socket 2 ,
+.MR socket 7