From owner-cvs-src@FreeBSD.ORG Sun May 13 22:16:14 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 333EE16A404; Sun, 13 May 2007 22:16:14 +0000 (UTC) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 23E1B13C458; Sun, 13 May 2007 22:16:14 +0000 (UTC) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l4DMGEB1088224; Sun, 13 May 2007 22:16:14 GMT (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l4DMGDTR088223; Sun, 13 May 2007 22:16:13 GMT (envelope-from andre) Message-Id: <200705132216.l4DMGDTR088223@repoman.freebsd.org> From: Andre Oppermann Date: Sun, 13 May 2007 22:16:13 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: 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-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: Sun, 13 May 2007 22:16:14 -0000 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