diff options
author | kevlo <kevlo@FreeBSD.org> | 2014-07-15 02:21:51 +0000 |
---|---|---|
committer | kevlo <kevlo@FreeBSD.org> | 2014-07-15 02:21:51 +0000 |
commit | 6a45f468c198569c30ee178595ac28509cb3ba60 (patch) | |
tree | 0deae2eb02ba7e7ecc207c1b902c0e5987c4a726 | |
parent | 93698c5f59d520aa4adb2b2450850a886dc96512 (diff) | |
download | FreeBSD-src-6a45f468c198569c30ee178595ac28509cb3ba60.zip FreeBSD-src-6a45f468c198569c30ee178595ac28509cb3ba60.tar.gz |
Document that listen(2) can fail with EDESTADDRREQ.
-rw-r--r-- | lib/libc/sys/listen.2 | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/libc/sys/listen.2 b/lib/libc/sys/listen.2 index ab22fd1..90059f8 100644 --- a/lib/libc/sys/listen.2 +++ b/lib/libc/sys/listen.2 @@ -28,7 +28,7 @@ .\" From: @(#)listen.2 8.2 (Berkeley) 12/11/93 .\" $FreeBSD$ .\" -.Dd October 20, 2012 +.Dd July 15, 2014 .Dt LISTEN 2 .Os .Sh NAME @@ -139,6 +139,9 @@ will fail if: The argument .Fa s is not a valid descriptor. +.It Bq Er EDESTADDRREQ +The socket is not bound to a local address, and the protocol does not +support listening on an unbound socket. .It Bq Er EINVAL The socket is already connected, or in the process of being connected. .It Bq Er ENOTSOCK |