svn commit: r212269 - head/lib/libc/sys

Glen Barber gjb at FreeBSD.org
Mon Sep 6 21:39:55 UTC 2010


Author: gjb (doc committer)
Date: Mon Sep  6 21:39:54 2010
New Revision: 212269
URL: http://svn.freebsd.org/changeset/base/212269

Log:
  Add ECONNRESET to list of possible errors in connect(2).
  
  PR:		148683
  Submitted by:	Gennady Proskurin <gpr at mail dot ru>
  Approved by:	keramida (mentor)
  MFC after:	1 week

Modified:
  head/lib/libc/sys/connect.2

Modified: head/lib/libc/sys/connect.2
==============================================================================
--- head/lib/libc/sys/connect.2	Mon Sep  6 21:29:21 2010	(r212268)
+++ head/lib/libc/sys/connect.2	Mon Sep  6 21:39:54 2010	(r212269)
@@ -28,7 +28,7 @@
 .\"     @(#)connect.2	8.1 (Berkeley) 6/4/93
 .\" $FreeBSD$
 .\"
-.Dd August 16, 2006
+.Dd September 5, 2010
 .Dt CONNECT 2
 .Os
 .Sh NAME
@@ -95,6 +95,8 @@ The socket is already connected.
 Connection establishment timed out without establishing a connection.
 .It Bq Er ECONNREFUSED
 The attempt to connect was forcefully rejected.
+.It Bq Er ECONNRESET
+The connection was reset by the remote host.
 .It Bq Er ENETUNREACH
 The network is not reachable from this host.
 .It Bq Er EHOSTUNREACH


More information about the svn-src-head mailing list