diff options
author | 2004-10-05 11:19:41 +0000 | |
---|---|---|
committer | 2004-10-05 11:19:41 +0000 | |
commit | 01bdda72734a821d2f634af72300cc859d43591f (patch) | |
tree | 81b3dbfe2751c1e3fa85d326bd2c5944c2ee56eb /lib/libc/sys/connect.2 | |
parent | derive ::PkgCfl from ::Conflict (diff) | |
download | wireguard-openbsd-01bdda72734a821d2f634af72300cc859d43591f.tar.xz wireguard-openbsd-01bdda72734a821d2f634af72300cc859d43591f.zip |
connect(2) can return with EHOSTUNREACH, found with and ok otto
Diffstat (limited to 'lib/libc/sys/connect.2')
-rw-r--r-- | lib/libc/sys/connect.2 | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libc/sys/connect.2 b/lib/libc/sys/connect.2 index 56c240a8b12..4e1da08addf 100644 --- a/lib/libc/sys/connect.2 +++ b/lib/libc/sys/connect.2 @@ -1,4 +1,4 @@ -.\" $OpenBSD: connect.2,v 1.18 2004/04/15 17:16:33 millert Exp $ +.\" $OpenBSD: connect.2,v 1.19 2004/10/05 11:19:41 henning Exp $ .\" $NetBSD: connect.2,v 1.8 1995/10/12 15:40:48 jtc Exp $ .\" .\" Copyright (c) 1983, 1993 @@ -100,6 +100,8 @@ A TCP connection with a local broadcast, the all-ones or a multicast address as the peer was attempted. .It Bq Er ECONNREFUSED The attempt to connect was forcefully rejected. +.It Bq Er EHOSTUNREACH +The destination address specified an unreachable host. .It Bq Er EINTR A connect was interrupted before it succeeded by the delivery of a signal. |