diff options
author | keramida <keramida@FreeBSD.org> | 2005-01-24 20:41:44 +0000 |
---|---|---|
committer | keramida <keramida@FreeBSD.org> | 2005-01-24 20:41:44 +0000 |
commit | bfbb7511c43d5c74c6e25936fd73293a00dbbba4 (patch) | |
tree | 098060e33a418015c29e8bb3292ce0d6d4e5eb40 /lib/libc/sys/send.2 | |
parent | a55551873cfba607dc8072a7e706554a6f139aa7 (diff) | |
download | FreeBSD-src-bfbb7511c43d5c74c6e25936fd73293a00dbbba4.zip FreeBSD-src-bfbb7511c43d5c74c6e25936fd73293a00dbbba4.tar.gz |
EISCONN may be returned by sendto() if an attempt is made to specify the
destination address to a datagram socket that is already connected.
Submitted by: Rudolf Cejka <cejkar@fit.vutbr.cz>
PR: docs/76399
MFC after: 1 week
Diffstat (limited to 'lib/libc/sys/send.2')
-rw-r--r-- | lib/libc/sys/send.2 | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/libc/sys/send.2 b/lib/libc/sys/send.2 index 81030fa..86bad18 100644 --- a/lib/libc/sys/send.2 +++ b/lib/libc/sys/send.2 @@ -181,6 +181,8 @@ This generally indicates that the interface has stopped sending, but may be caused by transient congestion. .It Bq Er EHOSTUNREACH The remote host was unreachable. +.It Bq Er EISCONN +A destination address was specified and the socket is already connected. .It Bq Er ECONNREFUSED The socket received an ICMP destination unreachable message from the last message sent. |