From owner-freebsd-questions@FreeBSD.ORG Mon Jun 21 05:59:55 2010 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EEA42106564A for ; Mon, 21 Jun 2010 05:59:55 +0000 (UTC) (envelope-from Olivier.Nicole@cs.ait.ac.th) Received: from mail.cs.ait.ac.th (mail.cs.ait.ac.th [192.41.170.16]) by mx1.freebsd.org (Postfix) with ESMTP id E36778FC18 for ; Mon, 21 Jun 2010 05:59:54 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.cs.ait.ac.th (Postfix) with ESMTP id DF4B33A3973; Mon, 21 Jun 2010 12:59:51 +0700 (ICT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=cs.ait.ac.th; h= references:subject:subject:in-reply-to:from:from:message-id:date :date:received:received:received; s=selector1; t=1277099991; x= 1278914391; bh=k9m1iyCh7gIo/RowuizD4bga02F68Y9WzFWnOAK5Tqs=; b=d tp9GssMsWhli1q56mHJ3D4MjSNfllW1lOuLPptODJcFwG7fZLUFyJJ7Lc3GXR/Ho wcVwaHjRlKWg0T0tkmXnouLL396YpGBgD1TosNhwc+5mVY3UQlawWz4sIboa1pon NQIIeIN4psY7A048wnXDpdeughS5/qNJbQPU996mJA= X-Virus-Scanned: amavisd-new at cs.ait.ac.th Received: from mail.cs.ait.ac.th ([127.0.0.1]) by localhost (mail.cs.ait.ac.th [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id kjkrH8cKwtKM; Mon, 21 Jun 2010 12:59:51 +0700 (ICT) Received: from banyan.cs.ait.ac.th (banyan.cs.ait.ac.th [192.41.170.5]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.cs.ait.ac.th (Postfix) with ESMTPS id 650A63A3972; Mon, 21 Jun 2010 12:59:51 +0700 (ICT) Received: (from on@localhost) by banyan.cs.ait.ac.th (8.14.3/8.14.3/Submit) id o5L5xnL7016186; Mon, 21 Jun 2010 12:59:49 +0700 (ICT) (envelope-from on) Date: Mon, 21 Jun 2010 12:59:49 +0700 (ICT) Message-Id: <201006210559.o5L5xnL7016186@banyan.cs.ait.ac.th> From: Olivier Nicole To: smithi@nimnet.asn.au In-reply-to: <20100621134020.X9227@sola.nimnet.asn.au> (message from Ian Smith on Mon, 21 Jun 2010 15:50:05 +1000 (EST)) References: <20100618120030.D6CA7106581D@hub.freebsd.org> <20100621134020.X9227@sola.nimnet.asn.au> Cc: freebsd-questions@pp.dyndns.biz, freebsd-questions@freebsd.org, modulok@gmail.com Subject: Re: Online gaming and file downloads - latency hell! X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Jun 2010 05:59:56 -0000 Hi, > I've read about people trying > to throttle outgoing ACKs to slow down their download but that still > wouldn't rearrange any incoming data packets so I don't see how that > would help. I haven't tried it myself though but neither have I read > about anyone successfully accomplishing this. TCP uses a window: the maximum number of packects that you can receive before you send an ACK. As long as ACK come flowing, the window size increases. Limit the ACK, you limit/reduce the size of the window, so you limit/reduce the incoming trafic. I beleive there could even be some nasty rewritting that would artifically change the window size so the TCP stream is slowed down. Bests, olivier