diff options
author | mpp <mpp@FreeBSD.org> | 1997-01-26 03:44:55 +0000 |
---|---|---|
committer | mpp <mpp@FreeBSD.org> | 1997-01-26 03:44:55 +0000 |
commit | 842b97e662af81c552d136f448db2828a22cf8e5 (patch) | |
tree | 5b5778202d7271dae67f9a327d93b08a665c8575 /lib/libc/sys/send.2 | |
parent | df3d05262d8fa9162b40b2e81b247967c74b8c33 (diff) | |
download | FreeBSD-src-842b97e662af81c552d136f448db2828a22cf8e5.zip FreeBSD-src-842b97e662af81c552d136f448db2828a22cf8e5.tar.gz |
Document a couple of additional errno's.
Submitted by: Steinar Haug and Heiko W. Rupp
Obtained from: NetBSD-bugs & FreeBSD-current mailing lists
Diffstat (limited to 'lib/libc/sys/send.2')
-rw-r--r-- | lib/libc/sys/send.2 | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lib/libc/sys/send.2 b/lib/libc/sys/send.2 index ac9451a..ab95dad 100644 --- a/lib/libc/sys/send.2 +++ b/lib/libc/sys/send.2 @@ -142,9 +142,13 @@ if an error occurred. and .Fn sendmsg fail if: -.Bl -tag -width [EMSGSIZE] +.Bl -tag -width Er .It Bq Er EBADF An invalid descriptor was specified. +.It Bq Er EACCES +The destination address is a broadcast address, and +.Dv SO_BROADCAST +has not been set on the socket. .It Bq Er ENOTSOCK The argument .Fa s @@ -164,6 +168,8 @@ The operation may succeed when buffers become available. The output queue for a network interface was full. 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. .El .Sh SEE ALSO .Xr fcntl 2 , |