From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-vx0-f171.google.com (mail-vx0-f171.google.com [209.85.220.171]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority" (verified OK)) by huchra.bufferbloat.net (Postfix) with ESMTPS id 286B120014B for ; Thu, 26 Jan 2012 12:14:15 -0800 (PST) Received: by vcbfo11 with SMTP id fo11so1183230vcb.16 for ; Thu, 26 Jan 2012 12:14:14 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; bh=NC19yqh9naejlixSI02PGiJoUmtskYLznIuYjaPNBu4=; b=iXGoKre3sDdgFDFD/wmt7XqQWM+sWol/btcDD+eUrfz7/WHkLvfW8zhauTeyIVWkyh JWxpc7SCBYTiAs1mCsRZQZW4pxlgPRL3qmbacPtXpOtPBXJ4sVWTe1cUsumt7hgLhPAC 20OPvqmbQcfUYWgWtbA8JcYdtyFyeG7dUUJIU= MIME-Version: 1.0 Received: by 10.220.39.7 with SMTP id d7mr900900vce.62.1327608854126; Thu, 26 Jan 2012 12:14:14 -0800 (PST) Received: by 10.52.165.165 with HTTP; Thu, 26 Jan 2012 12:14:14 -0800 (PST) In-Reply-To: <4F21B1E8.9010504@freedesktop.org> References: <4F21B1E8.9010504@freedesktop.org> Date: Thu, 26 Jan 2012 15:14:14 -0500 Message-ID: From: Justin McCann To: Jim Gettys Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: bloat Subject: Re: [Bloat] Traffic patterns for AQM testing.... Bursty behaviour of video players. X-BeenThere: bloat@lists.bufferbloat.net X-Mailman-Version: 2.1.13 Precedence: list List-Id: General list for discussing Bufferbloat List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 26 Jan 2012 20:14:15 -0000 On Thu, Jan 26, 2012 at 3:04 PM, Jim Gettys wrote: >... > The interesting question is what do current operating systems/standards > do to the TCP window when idle? =A0Anyone know? =A0I'm making a (possibly > poor) presumption that they are using single TCP connections; I should > probably take some traces.... You're looking for "congestion window validation" or "congestion window decay" from RFC2861. I believe the function you're looking for in Linux is tcp_cwnd_validate() http://lxr.linux.no/linux+v3.2.2/net/ipv4/tcp_output.c#L1287 Justin