From owner-cvs-all@FreeBSD.ORG Sun May 13 22:20:56 2007 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 27E2916A403 for ; Sun, 13 May 2007 22:20:56 +0000 (UTC) (envelope-from andre@freebsd.org) Received: from c00l3r.networx.ch (c00l3r.networx.ch [62.48.2.2]) by mx1.freebsd.org (Postfix) with ESMTP id 8C5FD13C45D for ; Sun, 13 May 2007 22:20:55 +0000 (UTC) (envelope-from andre@freebsd.org) Received: (qmail 31291 invoked from network); 13 May 2007 21:40:00 -0000 Received: from c00l3r.networx.ch (HELO [127.0.0.1]) ([62.48.2.2]) (envelope-sender ) by c00l3r.networx.ch (qmail-ldap-1.03) with SMTP for ; 13 May 2007 21:40:00 -0000 Message-ID: <46478F45.10902@freebsd.org> Date: Mon, 14 May 2007 00:20:53 +0200 From: Andre Oppermann User-Agent: Thunderbird 1.5.0.10 (Windows/20070221) MIME-Version: 1.0 To: src-committers@FreeBSD.org References: <200705132216.l4DMGDTR088223@repoman.freebsd.org> In-Reply-To: <200705132216.l4DMGDTR088223@repoman.freebsd.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/conf files src/sys/netinet tcp_input.c tcp_reass.c tcp_subr.c tcp_timewait.c tcp_var.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 13 May 2007 22:20:56 -0000 Andre Oppermann wrote: > andre 2007-05-13 22:16:13 UTC > > FreeBSD src repository > > Modified files: > sys/conf files > sys/netinet tcp_input.c tcp_reass.c tcp_subr.c > tcp_timewait.c tcp_var.h > Log: > Complete the (mechanical) move of the TCP reassembly and timewait > functions from their origininal place to their own files. > > TCP Reassembly from tcp_input.c -> tcp_reass.c > TCP Timewait from tcp_subr.c -> tcp_timewait.c > > Revision Changes Path > 1.1206 +2 -0 src/sys/conf/files > 1.350 +0 -211 src/sys/netinet/tcp_input.c > 1.352 +2 -31 src/sys/netinet/tcp_reass.c > 1.282 +2 -352 src/sys/netinet/tcp_subr.c > 1.283 +4 -30 src/sys/netinet/tcp_timewait.c > 1.149 +15 -0 src/sys/netinet/tcp_var.h Some stray timewait functions in tcp_input.c and tcp_timer.c will move next to tcp_timewait.c. -- Andre