From owner-freebsd-arch@FreeBSD.ORG Thu Oct 21 14:47:19 2004 Return-Path: Delivered-To: freebsd-arch@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2E6AE16A4CE for ; Thu, 21 Oct 2004 14:47:19 +0000 (GMT) Received: from c00l3r.networx.ch (c00l3r.networx.ch [62.48.2.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6187A43D41 for ; Thu, 21 Oct 2004 14:47:18 +0000 (GMT) (envelope-from andre@freebsd.org) Received: (qmail 77641 invoked from network); 21 Oct 2004 14:45:55 -0000 Received: from unknown (HELO freebsd.org) ([62.48.0.53]) (envelope-sender ) by c00l3r.networx.ch (qmail-ldap-1.03) with SMTP for ; 21 Oct 2004 14:45:55 -0000 Message-ID: <4177CBFC.AEA69F47@freebsd.org> Date: Thu, 21 Oct 2004 16:47:24 +0200 From: Andre Oppermann X-Mailer: Mozilla 4.8 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: Poul-Henning Kamp References: <28435.1098369725@critter.freebsd.dk> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: freebsd-net@freebsd.org cc: freebsd-arch@freebsd.org Subject: Re: Removing T/TCP and replacing it with something simpler X-BeenThere: freebsd-arch@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Discussion related to FreeBSD architecture List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Oct 2004 14:47:19 -0000 Poul-Henning Kamp wrote: > > In message <4177C8AD.6060706@freebsd.org>, Andre Oppermann writes: > >I want to bring this up for discussion prior to start working on it. > > > >I intend to remove T/TCP (transactional TCP) support from our TCP > >implementation for the following reasons: > > Yeah, go for it! > > >However something like T/TCP is certainly useful and I know of one special > >purpose application using it (Web Proxy Server/Client for high-delay Satellite > >connections). > > Wouldn't that be inferior to what accept-filters gives us ? No, not at all. In fact they are complementary and work beautifully together. T/TCP and the replacement are about cutting the extra round-trip times for the three-way handshake of TCP. accept_filter is sort of a buffer that defers readablility to userland until a full request has been received (a HTTP/1.1 request for example). -- Andre