From owner-cvs-src@FreeBSD.ORG Sat Nov 1 23:47:04 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D864416A4CE; Sat, 1 Nov 2003 23:47:04 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 55CA043F75; Sat, 1 Nov 2003 23:47:04 -0800 (PST) (envelope-from silby@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hA27l4XJ046026; Sat, 1 Nov 2003 23:47:04 -0800 (PST) (envelope-from silby@repoman.freebsd.org) Received: (from silby@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hA27l4gg046025; Sat, 1 Nov 2003 23:47:04 -0800 (PST) (envelope-from silby) Message-Id: <200311020747.hA27l4gg046025@repoman.freebsd.org> From: Mike Silbersack Date: Sat, 1 Nov 2003 23:47:04 -0800 (PST) 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_subr.c tcp_var.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 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, 02 Nov 2003 07:47:05 -0000 silby 2003/11/01 23:47:04 PST FreeBSD src repository Modified files: sys/netinet tcp_subr.c tcp_var.h Log: Add an additional check to the tcp_twrecycleable function; I had previously only considered the send sequence space. Unfortunately, some OSes (windows) still use a random positive increments scheme for their syn-ack ISNs, so I must consider receive sequence space as well. The value of 250000 bytes / second for Microsoft's ISN rate of increase was determined by testing with an XP machine. Revision Changes Path 1.166 +16 -3 src/sys/netinet/tcp_subr.c 1.92 +1 -0 src/sys/netinet/tcp_var.h