From owner-cvs-src-old@FreeBSD.ORG Mon Feb 21 11:56:32 2011 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 108281065740 for ; Mon, 21 Feb 2011 11:56:32 +0000 (UTC) (envelope-from lstewart@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D5BA28FC18 for ; Mon, 21 Feb 2011 11:56:31 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id p1LBuVYv025836 for ; Mon, 21 Feb 2011 11:56:31 GMT (envelope-from lstewart@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id p1LBuVas025835 for cvs-src-old@freebsd.org; Mon, 21 Feb 2011 11:56:31 GMT (envelope-from lstewart@repoman.freebsd.org) Message-Id: <201102211156.p1LBuVas025835@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to lstewart@repoman.freebsd.org using -f From: Lawrence Stewart Date: Mon, 21 Feb 2011 11:56:11 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4 Makefile cc.4 cc_chd.4 cc_cubic.4 cc_hd.4 cc_htcp.4 cc_newreno.4 cc_vegas.4 h_ertt.4 tcp.4 src/share/man/man9 Makefile cc.9 hhook.9 khelp.9 X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Feb 2011 11:56:32 -0000 lstewart 2011-02-21 11:56:11 UTC FreeBSD src repository Modified files: share/man/man4 Makefile tcp.4 share/man/man9 Makefile Added files: share/man/man4 cc.4 cc_chd.4 cc_cubic.4 cc_hd.4 cc_htcp.4 cc_newreno.4 cc_vegas.4 h_ertt.4 share/man/man9 cc.9 hhook.9 khelp.9 Log: SVN rev 218912 on 2011-02-21 11:56:11Z by lstewart Final commit to round out the "Five New TCP Congestion Control Algorithms for FreeBSD" FreeBSD Foundation funded project. - Add new man pages for the modular congestion control, Khelp and Hhook frameworks (cc.4, cc.9, khelp.9 and hhook.9). - Add new man pages for each available congestion control algorithm (cc_chd.4, cc_cubic.4, cc_hd.4, cc_htcp.4, cc_newreno.4 and cc_vegas.4). - Add a new man page for the Enhanced Round Trip Time (ERTT) Khelp module (h_ertt.4). - Update the TCP (tcp.4) man page to mention the TCP_CONGESTION socket option, cross reference to cc.4 and remove references to the retired "net.inet.tcp.newreno" sysctl MIB variable. In collaboration with: David Hayes and Grenville Armitage Sponsored by: FreeBSD Foundation MFC after: 3 months Revision Changes Path 1.502 +8 -0 src/share/man/man4/Makefile 1.1 +118 -0 src/share/man/man4/cc.4 (new) 1.1 +127 -0 src/share/man/man4/cc_chd.4 (new) 1.1 +114 -0 src/share/man/man4/cc_cubic.4 (new) 1.1 +120 -0 src/share/man/man4/cc_hd.4 (new) 1.1 +136 -0 src/share/man/man4/cc_htcp.4 (new) 1.1 +82 -0 src/share/man/man4/cc_newreno.4 (new) 1.1 +138 -0 src/share/man/man4/cc_vegas.4 (new) 1.1 +143 -0 src/share/man/man4/h_ertt.4 (new) 1.63 +24 -8 src/share/man/man4/tcp.4 1.386 +3 -0 src/share/man/man9/Makefile 1.1 +333 -0 src/share/man/man9/cc.9 (new) 1.1 +387 -0 src/share/man/man9/hhook.9 (new) 1.1 +437 -0 src/share/man/man9/khelp.9 (new)