From owner-cvs-src@FreeBSD.ORG Sat Jul 28 11:51:46 2007 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0ED7916A419; Sat, 28 Jul 2007 11:51:46 +0000 (UTC) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id F1EB613C4A3; Sat, 28 Jul 2007 11:51:45 +0000 (UTC) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l6SBpj3k078664; Sat, 28 Jul 2007 11:51:45 GMT (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l6SBpj76078663; Sat, 28 Jul 2007 11:51:45 GMT (envelope-from andre) Message-Id: <200707281151.l6SBpj76078663@repoman.freebsd.org> From: Andre Oppermann Date: Sat, 28 Jul 2007 11:51:45 +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/netinet tcp_input.c tcp_syncache.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: Sat, 28 Jul 2007 11:51:46 -0000 andre 2007-07-28 11:51:45 UTC FreeBSD src repository Modified files: sys/netinet tcp_input.c tcp_syncache.c Log: o Move all detailed checks for RST in LISTEN state from tcp_input() to syncache_rst(). o Fix tests for flag combinations of RST and SYN, ACK, FIN. Before a RST for a connection in syncache did not properly free the entry. o Add more detailed logging. Approved by: re (rwatson) Revision Changes Path 1.364 +4 -16 src/sys/netinet/tcp_input.c 1.125 +41 -1 src/sys/netinet/tcp_syncache.c