From owner-freebsd-doc@FreeBSD.ORG Fri May 27 15:50:12 2011 Return-Path: Delivered-To: freebsd-doc@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8FEE71065674 for ; Fri, 27 May 2011 15:50:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 7F47A8FC12 for ; Fri, 27 May 2011 15:50:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p4RFoCFE051085 for ; Fri, 27 May 2011 15:50:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p4RFoCcc051084; Fri, 27 May 2011 15:50:12 GMT (envelope-from gnats) Date: Fri, 27 May 2011 15:50:12 GMT Message-Id: <201105271550.p4RFoCcc051084@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org From: Matthias Andree Cc: Subject: Re: docs/156955: bug in share/man/man2/setsockopt.2 X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Matthias Andree List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 27 May 2011 15:50:12 -0000 The following reply was made to PR docs/156955; it has been noted by GNATS. From: Matthias Andree To: bcr@FreeBSD.org Cc: bug-followup@FreeBSD.org Subject: Re: docs/156955: bug in share/man/man2/setsockopt.2 Date: Fri, 27 May 2011 17:41:29 +0200 Am 27.05.2011 16:24, schrieb Benedict Reuschling: > Is this still an issue? The man page looks fine on the two systems I > checked. The SO_KEEPALIVE text is on its own line. The file in question > is lib/libc/sys/getsockopt.2 and has the correct formatting as far as I > can see. > > Benedict Reuschling > FreeBSD Doc Committer > > The FreeBSD Documentation Project > FreeBSD German Documentation Project - https://doc.bsdgroup.de Yup, still broken on RELENG_8: ... SO_DEBUG enables debugging in the underlying protocol modules. SO_REUSEADDR indicates that the rules used in validating addresses sup- plied in a bind(2) system call should allow reuse of local addresses. SO_REUSEPORT allows completely duplicate bindings by multiple processes if they all set SO_REUSEPORT before binding the port. This option per- mits multiple instances of a program to each receive UDP/IP multicast or broadcast datagrams destined for the bound port. SO_KEEPALIVE enables the periodic transmission of messages on a connected socket. Should the connected party fail to respond to these messages, the connection is con- sidered broken and processes using the socket are notified via a SIGPIPE signal when attempting to send data. SO_DONTROUTE indicates that outgo- ing messages should bypass the standard routing facilities. Instead, messages are directed to the appropriate network interface according to the network portion of the destination address. ... So missing paragraphs befrore SO_REUSEPORT, SO_KEEPALIVE, SO_DONTROUTE, SO_RCVTIMEO, possibly more.