diff options
author | 2001-02-07 12:48:37 +0000 | |
---|---|---|
committer | 2001-02-07 12:48:37 +0000 | |
commit | 83d3f09c4193a67d2856f0135fb99d66744ea9fd (patch) | |
tree | 812114d06e32baf41fb52cab0f75d76fc1d8c5f8 | |
parent | return ECONNABORTED, if the socket (tcp connection for example) (diff) | |
download | wireguard-openbsd-83d3f09c4193a67d2856f0135fb99d66744ea9fd.tar.xz wireguard-openbsd-83d3f09c4193a67d2856f0135fb99d66744ea9fd.zip |
dd ECONNABORTED.
-rw-r--r-- | lib/libc/sys/accept.2 | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libc/sys/accept.2 b/lib/libc/sys/accept.2 index f0fbab7ee0f..1e898fa809f 100644 --- a/lib/libc/sys/accept.2 +++ b/lib/libc/sys/accept.2 @@ -1,4 +1,4 @@ -.\" $OpenBSD: accept.2,v 1.10 2000/10/18 05:12:08 aaron Exp $ +.\" $OpenBSD: accept.2,v 1.11 2001/02/07 12:48:37 itojun Exp $ .\" $NetBSD: accept.2,v 1.7 1996/01/31 20:14:42 mycroft Exp $ .\" .\" Copyright (c) 1983, 1990, 1991, 1993 @@ -155,6 +155,8 @@ are present to be accepted. The per-process descriptor table is full. .It Bq Er ENFILE The system file table is full. +.It Bq Er ECONNABORTED +A connection has been aborted. .El .Sh SEE ALSO .Xr bind 2 , |