From owner-cvs-src@FreeBSD.ORG Tue Sep 27 21:14:22 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4AA5316A420; Tue, 27 Sep 2005 21:14:22 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 783E443D80; Tue, 27 Sep 2005 21:14:10 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j8RLEA67038136; Tue, 27 Sep 2005 21:14:10 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j8RLEAiL038135; Tue, 27 Sep 2005 21:14:10 GMT (envelope-from rwatson) Message-Id: <200509272114.j8RLEAiL038135@repoman.freebsd.org> From: Robert Watson Date: Tue, 27 Sep 2005 21:14:10 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/sys/sys socket.h src/sys/kern uipc_socket.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Sep 2005 21:14:22 -0000 rwatson 2005-09-27 21:14:10 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) sys/sys socket.h sys/kern uipc_socket.c Log: Merge uipc_socket.c:1.249, socket.h:1.89 from HEAD to RELENG_6: Add three new read-only socket options, which allow regression tests and other applications to query the state of the stack regarding the accept queue on a listen socket: SO_LISTENQLIMIT Return the value of so_qlimit (socket backlog) SO_LISTENQLEN Return the value of so_qlen (complete sockets) SO_LISTENINCQLEN Return the value of so_incqlen (incomplete sockets) Minor white space tweaks to existing socket options to make them consistent. Discussed with: andre Approved by: re (scottl) Revision Changes Path 1.242.2.2 +17 -0 src/sys/kern/uipc_socket.c 1.88.2.1 +3 -0 src/sys/sys/socket.h