From owner-cvs-all@FreeBSD.ORG Thu Nov 25 19:04:21 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 29DD016A4CF; Thu, 25 Nov 2004 19:04:21 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EFD1243D2D; Thu, 25 Nov 2004 19:04:20 +0000 (GMT) (envelope-from silby@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 iAPJ4KJN045916; Thu, 25 Nov 2004 19:04:20 GMT (envelope-from silby@repoman.freebsd.org) Received: (from silby@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id iAPJ4KXf045915; Thu, 25 Nov 2004 19:04:20 GMT (envelope-from silby) Message-Id: <200411251904.iAPJ4KXf045915@repoman.freebsd.org> From: Mike Silbersack Date: Thu, 25 Nov 2004 19:04:20 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet tcp_input.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 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: Thu, 25 Nov 2004 19:04:21 -0000 silby 2004-11-25 19:04:20 UTC FreeBSD src repository Modified files: sys/netinet tcp_input.c Log: Fix a problem where our TCP stack would ignore RST packets if the receive window was 0 bytes in size. This may have been the cause of unsolved "connection not closing" reports over the years. Thanks to Michiel Boland for providing the fix and providing a concise test program for the problem. Submitted by: Michiel Boland MFC after: 2 weeks Revision Changes Path 1.259 +3 -2 src/sys/netinet/tcp_input.c