From nobody Thu Feb 27 17:20:55 2020
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1])
 by ietfa.amsl.com (Postfix) with ESMTP id 15AEA3A0B3E
 for <quic-issues@ietfa.amsl.com>; Thu, 27 Feb 2020 17:20:55 -0800 (PST)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -2.1
X-Spam-Level: 
X-Spam-Status: No, score=-2.1 tagged_above=-999 required=5
 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1,
 DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1,
 SPF_HELO_NONE=0.001, SPF_PASS=-0.001, URIBL_BLOCKED=0.001]
 autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key)
 header.d=github.com
Received: from mail.ietf.org ([4.31.198.44])
 by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024)
 with ESMTP id hqnuGnGdY5DF for <quic-issues@ietfa.amsl.com>;
 Thu, 27 Feb 2020 17:20:50 -0800 (PST)
Received: from out-26.smtp.github.com (out-26.smtp.github.com [192.30.252.209])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by ietfa.amsl.com (Postfix) with ESMTPS id B4C603A0B3D
 for <quic-issues@ietf.org>; Thu, 27 Feb 2020 17:20:50 -0800 (PST)
Date: Thu, 27 Feb 2020 17:20:49 -0800
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com;
 s=pf2014; t=1582852850;
 bh=ly68HcE9J2bxUrDTPe8QPNrj7dSXUnuDc74C1VkdOfM=;
 h=Date:From:To:Subject:From;
 b=Eb15paAkFzVlr4bnray2pmQRwvlyTDUMGi4NWkZt9tXoy+uJsfDEEcEO8ZD3FdCs9
 Ja8HnX14dx1QVnq8ltZJRD6r3B3J7LBLY/i4NFxOmqihIZd4Zn82K2voD/5KoUIFhN
 fLfc116OBQnIBcoJ3kKMhZFvpz8zBbwvIsw7gfW8=
From: Jana Iyengar <noreply@github.com>
To: quic-issues@ietf.org
Message-ID: <quicwg/base-drafts/push/refs/heads/ianswett-send-one-packet/d7fabb-40ed46@github.com>
Subject: [quicwg/base-drafts] e84650: make transport parameters varint
Mime-Version: 1.0
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable
X-GitHub-Recipient-Address: quic-issues@ietf.org
X-Auto-Response-Suppress: All
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/waCV4w06M4kUgqpRzYx8l-LWX68>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: Notification list for GitHub issues related to the QUIC WG
 <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>,
 <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>,
 <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Fri, 28 Feb 2020 01:20:55 -0000

  Branch: refs/heads/ianswett-send-one-packet=0D
  Home:   https://github.com/quicwg/base-drafts=0D
  Commit: e846500ce2ee4a6d78b2ab54c2dc9a2dc0d43c9b=0D
      https://github.com/quicwg/base-drafts/commit/e846500ce2ee4a6d78b2ab=
54c2dc9a2dc0d43c9b=0D
  Author: David Schinazi <dschinazi.ietf@gmail.com>=0D
  Date:   2019-10-29 (Tue, 29 Oct 2019)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  make transport parameters varint=0D
=0D
=0D
  Commit: 6f9f8d7ffca4eed3373bb9f64261f85fd5f76b1a=0D
      https://github.com/quicwg/base-drafts/commit/6f9f8d7ffca4eed3373bb9=
f64261f85fd5f76b1a=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2019-12-09 (Mon, 09 Dec 2019)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Curtail CONNECTION_CLOSE for small Initial=0D
=0D
This is trickier than I had imagined.  Sending CONNECTION_CLOSE is=0D
probably fine, but it's harder to do this correctly now.  You can't just=0D=

send an unauthenticated CONNECTION_CLOSE because that might disrupt a=0D
real connection.  So there are two goals in tension:=0D
=0D
1. Don't kill an active connection (attempt) unnecessarily.=0D
=0D
2. Provide feedback about errors.=0D
=0D
The observation is that an attacker can disrupt connections by eliciting=0D=

a CONNECTION_CLOSE, so feedback naturally leads to an exposure to a DoS=0D=

attack.  That's unfortunate, but we have established that we don't care=0D=

about DoS by an on-path attacker prior to handshake completion.=0D
Anything we do here has got to be best effort.=0D
=0D
DoS prevention would say that you just discard junk, and that is=0D
probably the right answer.  But we have a number of cases where the=0D
robustness of the system depends on getting feedback.=0D
=0D
Either way, we agreed to allow CONNECTION_CLOSE in Initial, so the=0D
exposure exists anyway.  So this contains advice.  Maybe too much=0D
advice, but I thought that I'd see what people thought.=0D
=0D
Closes #3269.=0D
=0D
=0D
  Commit: ffa7f98abc53f92a0e98fe927e65cea492736e4c=0D
      https://github.com/quicwg/base-drafts/commit/ffa7f98abc53f92a0e98fe=
927e65cea492736e4c=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2019-12-10 (Tue, 10 Dec 2019)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Add point about off-path packets to handshake DoS section=0D
=0D
=0D
  Commit: 173d00664bd9c547cd042401621e80bed802e7dc=0D
      https://github.com/quicwg/base-drafts/commit/173d00664bd9c547cd0424=
01621e80bed802e7dc=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2019-12-10 (Tue, 10 Dec 2019)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Reword=0D
=0D
=0D
  Commit: 6bc3d4ad61c2c11baf7183488613e9fcc5dff1cb=0D
      https://github.com/quicwg/base-drafts/commit/6bc3d4ad61c2c11baf7183=
488613e9fcc5dff1cb=0D
  Author: David Schinazi <dschinazi.ietf@gmail.com>=0D
  Date:   2019-12-09 (Mon, 09 Dec 2019)=0D
=0D
  Changed paths:=0D
    M .circleci/config.yml=0D
    M CONTRIBUTING.md=0D
    M draft-ietf-quic-http.md=0D
    M draft-ietf-quic-qpack.md=0D
    M draft-ietf-quic-recovery.md=0D
    M draft-ietf-quic-tls.md=0D
    M draft-ietf-quic-transport.md=0D
    M initial-protection.js=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge branch 'master' into varinttp=0D
=0D
=0D
  Commit: a2f06723986f303023c8fcfc8bd9c3a5ddb5368c=0D
      https://github.com/quicwg/base-drafts/commit/a2f06723986f303023c8fc=
fc8bd9c3a5ddb5368c=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2019-12-10 (Tue, 10 Dec 2019)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Does this help?=0D
=0D
=0D
  Commit: e99cd67f95601f37b2b6930f28693b7d3a1044aa=0D
      https://github.com/quicwg/base-drafts/commit/e99cd67f95601f37b2b693=
0f28693b7d3a1044aa=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2019-12-11 (Wed, 11 Dec 2019)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
    A metadata.min.js=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge branch 'master' into close-small-initial=0D
=0D
=0D
  Commit: f302f3ec69913684ce35c61df7fb0fd9a461e3bf=0D
      https://github.com/quicwg/base-drafts/commit/f302f3ec69913684ce35c6=
1df7fb0fd9a461e3bf=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2019-12-11 (Wed, 11 Dec 2019)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Stateless immediate close=0D
=0D
This says that immediate close when you don't have state doesn't have to=0D=

establish state.  Thus, if an endpoint has to immediately close, which=0D=

can do so without entering the closing period, which would establish=0D
state.  It makes a general statement, which is that during the handshake=0D=

- that is, for unauthenticated inputs - packets can be discarded rather=0D=

than causing an immediate close.=0D
=0D
This greatly simplifies the text for a small initial.  Now it only needs=0D=

to say "MUST discard, MAY immediate close as well".=0D
=0D
=0D
  Commit: 7864bda6e4dd98d9e033ce49be4350d849b7f361=0D
      https://github.com/quicwg/base-drafts/commit/7864bda6e4dd98d9e033ce=
49be4350d849b7f361=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2019-12-11 (Wed, 11 Dec 2019)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Rewording suggestions=0D
=0D
Co-Authored-By: Jana Iyengar <jri.ietf@gmail.com>=0D
=0D
=0D
  Commit: 47228989491e2cdf3606c5d9745c43fb8aac2afd=0D
      https://github.com/quicwg/base-drafts/commit/47228989491e2cdf3606c5=
d9745c43fb8aac2afd=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2019-12-11 (Wed, 11 Dec 2019)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Rewrap=0D
=0D
=0D
  Commit: 6971443498f64d31ec7bebeadfe2215e21c4b19a=0D
      https://github.com/quicwg/base-drafts/commit/6971443498f64d31ec7beb=
eadfe2215e21c4b19a=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2019-12-11 (Wed, 11 Dec 2019)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Refer to fields properly=0D
=0D
=0D
  Commit: 94754815fe5d11140f77cebe979ff954e8598574=0D
      https://github.com/quicwg/base-drafts/commit/94754815fe5d11140f77ce=
be979ff954e8598574=0D
  Author: Jana Iyengar <jri.ietf@gmail.com>=0D
  Date:   2019-12-13 (Fri, 13 Dec 2019)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  add note on pacing and editorialze=0D
=0D
=0D
  Commit: bb2988130cf981e813f5378b9f908c3b09f134ca=0D
      https://github.com/quicwg/base-drafts/commit/bb2988130cf981e813f537=
8b9f908c3b09f134ca=0D
  Author: Jana Iyengar <jri.ietf@gmail.com>=0D
  Date:   2019-12-14 (Sat, 14 Dec 2019)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  remove pacing recommendation=0D
=0D
=0D
  Commit: 6bea25dc982beacbecf4576ff2945a8e89ede4f7=0D
      https://github.com/quicwg/base-drafts/commit/6bea25dc982beacbecf457=
6ff2945a8e89ede4f7=0D
  Author: Jana Iyengar <jri.ietf@gmail.com>=0D
  Date:   2019-12-16 (Mon, 16 Dec 2019)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  add a reference to sec 6.9 without recommendation=0D
=0D
=0D
  Commit: b361a8bef74a08a3f29392432648d3450a028037=0D
      https://github.com/quicwg/base-drafts/commit/b361a8bef74a08a3f29392=
432648d3450a028037=0D
  Author: Jana Iyengar <jri.ietf@gmail.com>=0D
  Date:   2019-12-17 (Tue, 17 Dec 2019)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Ian's suggestions=0D
=0D
=0D
  Commit: 957a750bc54c397cacd65040f07710cd051d596f=0D
      https://github.com/quicwg/base-drafts/commit/957a750bc54c397cacd650=
40f07710cd051d596f=0D
  Author: Jana Iyengar <jri.ietf@gmail.com>=0D
  Date:   2019-12-17 (Tue, 17 Dec 2019)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Allow use of token after client address change=0D
=0D
=0D
  Commit: 906c77f51c88d60d0de9f98fed0b9591192923ad=0D
      https://github.com/quicwg/base-drafts/commit/906c77f51c88d60d0de9f9=
8fed0b9591192923ad=0D
  Author: Jana Iyengar <jri.ietf@gmail.com>=0D
  Date:   2019-12-18 (Wed, 18 Dec 2019)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  rephrase and slight shuffle=0D
=0D
=0D
  Commit: d626db6f961f3e5a48b6e4891ff5fa1af2827fec=0D
      https://github.com/quicwg/base-drafts/commit/d626db6f961f3e5a48b6e4=
891ff5fa1af2827fec=0D
  Author: Jana Iyengar <jri.ietf@gmail.com>=0D
  Date:   2019-12-19 (Thu, 19 Dec 2019)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Ian's suggestions=0D
=0D
=0D
  Commit: 7eb5435a066a77c57e9426eb609e77e025b6fb9a=0D
      https://github.com/quicwg/base-drafts/commit/7eb5435a066a77c57e9426=
eb609e77e025b6fb9a=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-01-13 (Mon, 13 Jan 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Specify the PATH_CHALLENGE timer period=0D
=0D
Fixes #2910=0D
=0D
=0D
  Commit: 8145a5340f4f1ec77a53f6da86b55c50c8ecc985=0D
      https://github.com/quicwg/base-drafts/commit/8145a5340f4f1ec77a53f6=
da86b55c50c8ecc985=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-01-13 (Mon, 13 Jan 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Update draft-ietf-quic-transport.md=0D
=0D
=0D
  Commit: a3b04ed64cda65cf4c8d7b9264e50929745c5fc2=0D
      https://github.com/quicwg/base-drafts/commit/a3b04ed64cda65cf4c8d7b=
9264e50929745c5fc2=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-01-14 (Tue, 14 Jan 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Update draft-ietf-quic-transport.md=0D
=0D
Co-Authored-By: Martin Thomson <mt@lowentropy.net>=0D
=0D
=0D
  Commit: 4a0726914b5e71cc348d321cad2e83f6df50a326=0D
      https://github.com/quicwg/base-drafts/commit/4a0726914b5e71cc348d32=
1cad2e83f6df50a326=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-01-17 (Fri, 17 Jan 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Apply suggestions from code review=0D
=0D
Co-Authored-By: Jana Iyengar <jri.ietf@gmail.com>=0D
=0D
=0D
  Commit: 822ffd1eebba715f69567ffb5a963c9efba129cc=0D
      https://github.com/quicwg/base-drafts/commit/822ffd1eebba715f69567f=
fb5a963c9efba129cc=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-01-17 (Fri, 17 Jan 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Update draft-ietf-quic-transport.md=0D
=0D
=0D
  Commit: 960c980f8e64b4eb9d63b51078024f1e81f6ca5a=0D
      https://github.com/quicwg/base-drafts/commit/960c980f8e64b4eb9d63b5=
1078024f1e81f6ca5a=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-01-17 (Fri, 17 Jan 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Ack delays are adjusted by ack_delay_exponent=0D
=0D
Fixes #3355=0D
=0D
=0D
  Commit: b215bd3ad1d3138504559c58f54a3da895ccc679=0D
      https://github.com/quicwg/base-drafts/commit/b215bd3ad1d3138504559c=
58f54a3da895ccc679=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-01-20 (Mon, 20 Jan 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  adjusted?=0D
=0D
=0D
  Commit: df34dc8c55d83997e9eeb942eb489ddf12a5e32e=0D
      https://github.com/quicwg/base-drafts/commit/df34dc8c55d83997e9eeb9=
42eb489ddf12a5e32e=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-01-20 (Mon, 20 Jan 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Reference 19.3 of transport=0D
=0D
=0D
  Commit: d0d15f8b3acdc5ecb0153ff7eb4333ed0c3992e9=0D
      https://github.com/quicwg/base-drafts/commit/d0d15f8b3acdc5ecb0153f=
f7eb4333ed0c3992e9=0D
  Author: Will Hawkins <whh8b@obs.cr>=0D
  Date:   2020-02-03 (Mon, 03 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Fix #3405: Specify that active_connection_id_limit TP is an integer=0D
=0D
=0D
  Commit: 881369f834fca559ffd2b57e6dfde74de83e638f=0D
      https://github.com/quicwg/base-drafts/commit/881369f834fca559ffd2b5=
7e6dfde74de83e638f=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-02-04 (Tue, 04 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Redefine recovery period=0D
=0D
Closes #3409.=0D
=0D
=0D
  Commit: 9876208d33d68d923d31699b7a5e54e32bf321f1=0D
      https://github.com/quicwg/base-drafts/commit/9876208d33d68d923d3169=
9b7a5e54e32bf321f1=0D
  Author: David Schinazi <dschinazi.ietf@gmail.com>=0D
  Date:   2020-02-05 (Wed, 05 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-http.md=0D
    M draft-ietf-quic-qpack.md=0D
    M draft-ietf-quic-recovery.md=0D
    M draft-ietf-quic-tls.md=0D
    M draft-ietf-quic-transport.md=0D
    R initial-protection.js=0D
    A protection-samples.js=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge branch 'master' into varinttp=0D
=0D
=0D
  Commit: 6ab9bab55bb3247e5f8938fd908578f9ef13187e=0D
      https://github.com/quicwg/base-drafts/commit/6ab9bab55bb3247e5f8938=
fd908578f9ef13187e=0D
  Author: David Schinazi <dschinazi.ietf@gmail.com>=0D
  Date:   2020-02-05 (Wed, 05 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  revert preferred_address change=0D
=0D
=0D
  Commit: ce9a03f47093c1196d24e53f5d3eb62645f1e435=0D
      https://github.com/quicwg/base-drafts/commit/ce9a03f47093c1196d24e5=
3f5d3eb62645f1e435=0D
  Author: Mike Bishop <mbishop@evequefou.be>=0D
  Date:   2020-02-05 (Wed, 05 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Extension dragons=0D
=0D
=0D
  Commit: 2af27a157234152c1b19d68ea827b5cfd31901bc=0D
      https://github.com/quicwg/base-drafts/commit/2af27a157234152c1b19d6=
8ea827b5cfd31901bc=0D
  Author: Mike Bishop <mbishop@evequefou.be>=0D
  Date:   2020-02-05 (Wed, 05 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Not just frames=0D
=0D
=0D
  Commit: 93bb69a13bdd015dcd30402921b3670b0622efd0=0D
      https://github.com/quicwg/base-drafts/commit/93bb69a13bdd015dcd3040=
2921b3670b0622efd0=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-02-05 (Wed, 05 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Point out that the payload size could decrease=0D
=0D
And this could make retransmitting frames complex.=0D
=0D
=0D
  Commit: 14837e6e26ee52b4e222d8614878601bec97b1fd=0D
      https://github.com/quicwg/base-drafts/commit/14837e6e26ee52b4e222d8=
614878601bec97b1fd=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-02-05 (Wed, 05 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Update draft-ietf-quic-transport.md=0D
=0D
=0D
  Commit: 7d0e132f8bc9faee4563cad25fbb198c2cc85508=0D
      https://github.com/quicwg/base-drafts/commit/7d0e132f8bc9faee4563ca=
d25fbb198c2cc85508=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-02-05 (Wed, 05 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Update draft-ietf-quic-transport.md=0D
=0D
Co-Authored-By: Martin Thomson <mt@lowentropy.net>=0D
=0D
=0D
  Commit: 92fda61c7efec9753fc8d003593aebec2c8776e6=0D
      https://github.com/quicwg/base-drafts/commit/92fda61c7efec9753fc8d0=
03593aebec2c8776e6=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-02-07 (Fri, 07 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Jana's suggestion=0D
=0D
=0D
  Commit: 751594facf17165a71910158d39c5fce59d6ee34=0D
      https://github.com/quicwg/base-drafts/commit/751594facf17165a719101=
58d39c5fce59d6ee34=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-02-09 (Sun, 09 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Remove "Ignoring Loss of Undecryptable Packets"=0D
=0D
Now that QUIC has separate packet number spaces, it's impossible to decla=
re a packet lost without the relevant keys being present at both peers, b=
ecause an ACK needs to be sent by one and processed by the other.=0D
=0D
So this text is OBE and potentially confusing.=0D
=0D
=0D
  Commit: a26b50e600ebc51a4903df50182eca73c8610e26=0D
      https://github.com/quicwg/base-drafts/commit/a26b50e600ebc51a4903df=
50182eca73c8610e26=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-02-09 (Sun, 09 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3339 from quicwg/ianswett-path-challenge-timer=0D
=0D
Specify the PATH_CHALLENGE timer period=0D
=0D
=0D
  Commit: f247379b14f50465adc7c992a7db5853430686c8=0D
      https://github.com/quicwg/base-drafts/commit/f247379b14f50465adc7c9=
92a7db5853430686c8=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-02-09 (Sun, 09 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Idle timeout editorial fixes=0D
=0D
>From @janaiyengar and @MikeBishop comments on #3099 =0D
=0D
Fixes #3184=0D
=0D
=0D
  Commit: 8c52fd83cb5a0228dd696e45f556617e8156036f=0D
      https://github.com/quicwg/base-drafts/commit/8c52fd83cb5a0228dd696e=
45f556617e8156036f=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-02-09 (Sun, 09 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Clarify client anti-amplification response=0D
=0D
Clarifies why a client might send a Handshake packet, as well as generall=
y tries to improve the anti-deadlock text.=0D
=0D
Fixes #2598=0D
=0D
=0D
  Commit: 6138a07267ab9a28d00eaec8f3699cf60a6dc7fe=0D
      https://github.com/quicwg/base-drafts/commit/6138a07267ab9a28d00eae=
c8f3699cf60a6dc7fe=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-02-09 (Sun, 09 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Update draft-ietf-quic-transport.md=0D
=0D
=0D
  Commit: 2793b5c477c8ef4672c5d056510d685f83b0bf90=0D
      https://github.com/quicwg/base-drafts/commit/2793b5c477c8ef4672c5d0=
56510d685f83b0bf90=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-02-09 (Sun, 09 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Simplify=0D
=0D
=0D
  Commit: a6e821584e80f2fa5efe02a21aba0926131d7a4d=0D
      https://github.com/quicwg/base-drafts/commit/a6e821584e80f2fa5efe02=
a21aba0926131d7a4d=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-02-09 (Sun, 09 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Update draft-ietf-quic-transport.md=0D
=0D
=0D
  Commit: 9a445fbf803d86857e89b07214895064d22f918b=0D
      https://github.com/quicwg/base-drafts/commit/9a445fbf803d86857e89b0=
7214895064d22f918b=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-02-09 (Sun, 09 Feb 2020)=0D
=0D
  Changed paths:=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3442 from quicwg/ianswett-remove-ignoring-loss=0D
=0D
Remove "Ignoring Loss of Undecryptable Packets"=0D
=0D
=0D
  Commit: 059773ce1e6cb04fe9f5b2a97ff3eb292e7df1fd=0D
      https://github.com/quicwg/base-drafts/commit/059773ce1e6cb04fe9f5b2=
a97ff3eb292e7df1fd=0D
  Author: Eric Kinnear <ekinnear@apple.com>=0D
  Date:   2020-02-10 (Mon, 10 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Clarify that you can use any issued CID at any time, even during the ha=
ndshake=0D
=0D
=0D
  Commit: 8e532b07e8f56cc31ca53a84325ba5539d5a603c=0D
      https://github.com/quicwg/base-drafts/commit/8e532b07e8f56cc31ca53a=
84325ba5539d5a603c=0D
  Author: Eric Kinnear <ekinnear@apple.com>=0D
  Date:   2020-02-10 (Mon, 10 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Note that CIDs are valid in any packet type=0D
=0D
=0D
  Commit: 60d963764b61248ce1fe4150086ccb09f04056ac=0D
      https://github.com/quicwg/base-drafts/commit/60d963764b61248ce1fe41=
50086ccb09f04056ac=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-02-10 (Mon, 10 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Update draft-ietf-quic-transport.md=0D
=0D
Co-Authored-By: Martin Thomson <mt@lowentropy.net>=0D
=0D
=0D
  Commit: 9230db89612af823a292500816cd2427646debd8=0D
      https://github.com/quicwg/base-drafts/commit/9230db89612af823a29250=
0816cd2427646debd8=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-02-10 (Mon, 10 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Update draft-ietf-quic-transport.md=0D
=0D
Co-Authored-By: Eric Kinnear <32474881+erickinnear@users.noreply.github.c=
om>=0D
=0D
=0D
  Commit: 321c59afbcf01afa80373633c9ec2058a9088cf8=0D
      https://github.com/quicwg/base-drafts/commit/321c59afbcf01afa803736=
33c9ec2058a9088cf8=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-02-10 (Mon, 10 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Reworked Martin's suggestion=0D
=0D
=0D
  Commit: 359c9b3b9ecf225f8e4809297b72e43d6f3b3859=0D
      https://github.com/quicwg/base-drafts/commit/359c9b3b9ecf225f8e4809=
297b72e43d6f3b3859=0D
  Author: Mike Bishop <mbishop@evequefou.be>=0D
  Date:   2020-02-11 (Tue, 11 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-http.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Require QUICv1 (#3323)=0D
=0D
=0D
  Commit: 17f91c31a30849dfd227582f0adf8f0831c266a3=0D
      https://github.com/quicwg/base-drafts/commit/17f91c31a30849dfd22758=
2f0adf8f0831c266a3=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-02-11 (Tue, 11 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-http.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Make host specification more precise (#3326)=0D
=0D
This doesn't come out and say "don't use IP literals in SNI" because RFC=0D=

6066 does that amply.  Instead, it says that unless you have something=0D=

better, use SNI for domain names.  This turns out to be shorter than=0D
what we had previously.=0D
=0D
Closes #3324.=0D
=0D
=0D
  Commit: 55dd0c287b2c2172314a2c1027683e990033cb12=0D
      https://github.com/quicwg/base-drafts/commit/55dd0c287b2c2172314a2c=
1027683e990033cb12=0D
  Author: Ryan Hamilton <rch@google.com>=0D
  Date:   2020-02-11 (Tue, 11 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-http.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Remove DUPLICATE_PUSH and allow duplicate PUSH_PROMISE (#3309)=0D
=0D
* Remove DUPLICATE_PUSH and allow duplicate PUSH_PROMISE=0D
=0D
* wrap=0D
=0D
* one or more=0D
=0D
* Apply suggestions from code review=0D
=0D
Co-Authored-By: Mike Bishop <mbishop@evequefou.be>=0D
=0D
* Update "identical" definition=0D
=0D
* Apply suggestions from code review from Lucas=0D
=0D
Co-Authored-By: Lucas Pardue <lucaspardue.24.7@gmail.com>=0D
=0D
* Apply suggestions from Janacode review=0D
=0D
Co-Authored-By: Jana Iyengar <jri.ietf@gmail.com>=0D
=0D
* Add motivation for duplicate push ids=0D
=0D
* Apply suggestions from mbishop code review=0D
=0D
Co-Authored-By: Mike Bishop <mbishop@evequefou.be>=0D
=0D
* Update draft-ietf-quic-http.md per mbishop=0D
=0D
Co-Authored-By: Mike Bishop <mbishop@evequefou.be>=0D
=0D
* Use less=0D
=0D
Co-authored-by: Mike Bishop <mbishop@evequefou.be>=0D
Co-authored-by: Lucas Pardue <lucaspardue.24.7@gmail.com>=0D
Co-authored-by: Jana Iyengar <jri.ietf@gmail.com>=0D
=0D
=0D
  Commit: 367f668ee518b2be51c5661eaf17c753531cedb8=0D
      https://github.com/quicwg/base-drafts/commit/367f668ee518b2be51c566=
1eaf17c753531cedb8=0D
  Author: Mike Bishop <mbishop@evequefou.be>=0D
  Date:   2020-02-11 (Tue, 11 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-http.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Clarify and split the "malformed" definition (#3352)=0D
=0D
* Import more RFC7540 header text=0D
=0D
* Extraneous frames aren't malformed messages; they're worse=0D
=0D
* Missed a multi-paragraph=0D
=0D
* Missed some HTTP/2s=0D
=0D
* Invalid message sequences are also malformed=0D
=0D
* Review feedback=0D
=0D
* Martin's feedback=0D
=0D
* Framing errors are connection-fatal=0D
=0D
* Reconcile with #3309=0D
=0D
=0D
  Commit: ab8059efd222e058c7cd7335840c7a7d45c5a859=0D
      https://github.com/quicwg/base-drafts/commit/ab8059efd222e058c7cd73=
35840c7a7d45c5a859=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-02-12 (Wed, 12 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-http.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Tweak traffic analysis text (#3411)=0D
=0D
This text was pretty good and more or less covered the problem already,=0D=

but I think that this might be slightly better.=0D
=0D
Closes #2905.=0D
=0D
=0D
  Commit: 99baf78ddfd42cbd422a8a76fbdca7b3d8f8ff7c=0D
      https://github.com/quicwg/base-drafts/commit/99baf78ddfd42cbd422a8a=
76fbdca7b3d8f8ff7c=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-02-12 (Wed, 12 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3421 from quicwg/transport/extension_dragons=0D
=0D
Here be dragons=0D
=0D
=0D
  Commit: 27db33c26bc5cba57ba54c15425bbb7348aac46f=0D
      https://github.com/quicwg/base-drafts/commit/27db33c26bc5cba57ba54c=
15425bbb7348aac46f=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-02-11 (Tue, 11 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3410 from quicwg/recovery-period-dfn=0D
=0D
Redefine recovery period=0D
=0D
=0D
  Commit: 9f7a4a6d07b2908c852c88106c1b2dcd404a187f=0D
      https://github.com/quicwg/base-drafts/commit/9f7a4a6d07b2908c852c88=
106c1b2dcd404a187f=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-02-12 (Wed, 12 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3406 from hawkinsw/active_connection_id_limit_type=0D=

=0D
Fix #3405: Specify that active_connection_id_limit TP is an integer=0D
=0D
=0D
  Commit: d105908807a6d5891ce81cdf3235bfd184322c5c=0D
      https://github.com/quicwg/base-drafts/commit/d105908807a6d5891ce81c=
df3235bfd184322c5c=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-02-12 (Wed, 12 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3438 from erickinnear/ek/cid_during_handshake=0D
=0D
#3348 Clarify that you can use any issued CID at any time, even during th=
e handshake=0D
=0D
=0D
  Commit: 922bd62ad23517c7d6faf0397333485ec9db5da6=0D
      https://github.com/quicwg/base-drafts/commit/922bd62ad23517c7d6faf0=
397333485ec9db5da6=0D
  Author: Jana Iyengar <jri.ietf@gmail.com>=0D
  Date:   2020-02-12 (Wed, 12 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3301 from quicwg/jri/flow-control=0D
=0D
Don't recommend 3 RTTs of credit (and other editorial)=0D
=0D
=0D
  Commit: 5020e34e82d19398cb90acb3a450d6e140e4bf9a=0D
      https://github.com/quicwg/base-drafts/commit/5020e34e82d19398cb90ac=
b3a450d6e140e4bf9a=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-02-12 (Wed, 12 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-http.md=0D
    M draft-ietf-quic-qpack.md=0D
    M draft-ietf-quic-recovery.md=0D
    M draft-ietf-quic-tls.md=0D
    M draft-ietf-quic-transport.md=0D
    R initial-protection.js=0D
    R metadata.min.js=0D
    A protection-samples.js=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge branch 'master' into close-small-initial=0D
=0D
=0D
  Commit: f45e58d6934099faa40a8d569e50b2bcf21015db=0D
      https://github.com/quicwg/base-drafts/commit/f45e58d6934099faa40a8d=
569e50b2bcf21015db=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-02-12 (Wed, 12 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3292 from quicwg/close-small-initial=0D
=0D
Define stateless CONNECTION_CLOSE=0D
=0D
=0D
  Commit: 42a4c290e6752593fead4059be6f71ef9fe0cde6=0D
      https://github.com/quicwg/base-drafts/commit/42a4c290e6752593fead40=
59be6f71ef9fe0cde6=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-02-12 (Wed, 12 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3308 from quicwg/jri/token=0D
=0D
Allow use of token after client address change=0D
=0D
=0D
  Commit: 7d8e0a25b338a6d6a935b9e1ce93da82cabf0549=0D
      https://github.com/quicwg/base-drafts/commit/7d8e0a25b338a6d6a935b9=
e1ce93da82cabf0549=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-02-13 (Thu, 13 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3424 from quicwg/ianswett-retransmit-frames-is-hard=
=0D
=0D
Point out that the payload size could decrease=0D
=0D
=0D
  Commit: 40d902ea4a4c4c2227963b629b4bdcfdde56407d=0D
      https://github.com/quicwg/base-drafts/commit/40d902ea4a4c4c2227963b=
629b4bdcfdde56407d=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-02-12 (Wed, 12 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3362 from quicwg/ianswett-ack-delay-exponent=0D
=0D
Ack delays are adjusted by ack_delay_exponent=0D
=0D
=0D
  Commit: 60d233b35db56b601859b9b633347bdec0f3c37f=0D
      https://github.com/quicwg/base-drafts/commit/60d233b35db56b601859b9=
b633347bdec0f3c37f=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-02-13 (Thu, 13 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Restore "Ignoring Loss of Undecryptable Packets"=0D
=0D
Reverts #3442 manually=0D
=0D
=0D
  Commit: 80ace942ea90075bf9174f641c1caf2b5f98b4de=0D
      https://github.com/quicwg/base-drafts/commit/80ace942ea90075bf9174f=
641c1caf2b5f98b4de=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-02-14 (Fri, 14 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Fix the section reference=0D
=0D
In recovery for max_ack_delay of 0.=0D
=0D
Came from #3459=0D
=0D
=0D
  Commit: 86ae5b47c6f73a1356b211cf4db0a6b2dcd23d85=0D
      https://github.com/quicwg/base-drafts/commit/86ae5b47c6f73a1356b211=
cf4db0a6b2dcd23d85=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-02-15 (Sat, 15 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Martin's suggestion reworded=0D
=0D
=0D
  Commit: 7f0e36ce84a70e4e22b4ab1454d05884052b68b0=0D
      https://github.com/quicwg/base-drafts/commit/7f0e36ce84a70e4e22b4ab=
1454d05884052b68b0=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-02-15 (Sat, 15 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Add back old sentence=0D
=0D
=0D
  Commit: 6fa5c4286429fd28fd5447936214d37d50b6f2c0=0D
      https://github.com/quicwg/base-drafts/commit/6fa5c4286429fd28fd5447=
936214d37d50b6f2c0=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-02-15 (Sat, 15 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Clarify adaptive loss thresholds=0D
=0D
Fixes #3389 by clarifying that one may start with a smaller time threshol=
d, not a smaller packet threshold.=0D
=0D
=0D
  Commit: 275ab8038214c051d9e767d43c08a2f9b3f042bd=0D
      https://github.com/quicwg/base-drafts/commit/275ab8038214c051d9e767=
d43c08a2f9b3f042bd=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-02-15 (Sat, 15 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Make congestion control more self-contained=0D
=0D
Clarifies a few points and moves the initial window recommendation from t=
he pseudocode to the text.=0D
=0D
Fixes #3088=0D
=0D
=0D
  Commit: 2c5f8fcfc00e4b470564dbfc6ac4f9046d98c974=0D
      https://github.com/quicwg/base-drafts/commit/2c5f8fcfc00e4b470564db=
fc6ac4f9046d98c974=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-02-18 (Tue, 18 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-qpack.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Deadlocks, and how to avoid them (#3458)=0D
=0D
* Deadlocks, and how to avoid them=0D
=0D
Much belated, this attempts to address the concerns about deadlocking.=0D=

Basically, this says that you should avoid instructions that don't have=0D=

flow control credit.  It doesn't say how an encoder might learn what=0D
limits are, but we've seen a range of tactics being used in=0D
implementations and I don't want to get into transport API debates.=0D
=0D
This doesn't cover the memory exhaustion attack that @kazuho suggests on=0D=

the issue; I think that is better covered more generally by the=0D
connection-level flow control limits.=0D
=0D
Closes #1420.=0D
=0D
* Taking Ian's suggestion and rearranging slighty=0D
=0D
=0D
  Commit: ef8f18206b9da3eff234e1ea01ad888f506dff2e=0D
      https://github.com/quicwg/base-drafts/commit/ef8f18206b9da3eff234e1=
ea01ad888f506dff2e=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-02-19 (Wed, 19 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3460 from quicwg/ianswett-ref=0D
=0D
Fix the section reference=0D
=0D
=0D
  Commit: 7660a51226fe6ba10b0793a88466954b0210e580=0D
      https://github.com/quicwg/base-drafts/commit/7660a51226fe6ba10b0793=
a88466954b0210e580=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-02-19 (Wed, 19 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Separate out initial and min congestion window=0D
=0D
=0D
  Commit: 5f29a7d639ebb49470f324fb5bd6a9f3f5ce0279=0D
      https://github.com/quicwg/base-drafts/commit/5f29a7d639ebb49470f324=
fb5bd6a9f3f5ce0279=0D
  Author: Alessandro Ghedini <alessandro@ghedini.me>=0D
  Date:   2020-02-19 (Wed, 19 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-http.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Fix grammer: for indicate -> to indicate (#3469)=0D
=0D
=0D
  Commit: d116e03baea1a4012f5d4ab20ee5619a7cca3d03=0D
      https://github.com/quicwg/base-drafts/commit/d116e03baea1a4012f5d4a=
b20ee5619a7cca3d03=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-02-20 (Thu, 20 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Add a no-op changelog for recovery since -25=0D
=0D
=0D
  Commit: fea5aea293a99bcdd31bb70d5b18c5c298b45a98=0D
      https://github.com/quicwg/base-drafts/commit/fea5aea293a99bcdd31bb7=
0d5b18c5c298b45a98=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-02-20 (Thu, 20 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-http.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Http since -25 changelog=0D
=0D
=0D
  Commit: e4a4a5f5171e8a1ec2b4ca60a6fc8d3264221123=0D
      https://github.com/quicwg/base-drafts/commit/e4a4a5f5171e8a1ec2b4ca=
60a6fc8d3264221123=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-02-20 (Thu, 20 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-qpack.md=0D
=0D
  Log Message:=0D
  -----------=0D
  qpack changelog=0D
=0D
=0D
  Commit: df32bc8402a900e09390e7e41c7f7cef8f8a9516=0D
      https://github.com/quicwg/base-drafts/commit/df32bc8402a900e09390e7=
e41c7f7cef8f8a9516=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-02-20 (Thu, 20 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-tls.md=0D
=0D
  Log Message:=0D
  -----------=0D
  tls=0D
=0D
=0D
  Commit: bac73750cfde8b0f73d1dc4ba5602b5968e70e8e=0D
      https://github.com/quicwg/base-drafts/commit/bac73750cfde8b0f73d1dc=
4ba5602b5968e70e8e=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-02-20 (Thu, 20 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-http.md=0D
    M draft-ietf-quic-qpack.md=0D
    M draft-ietf-quic-recovery.md=0D
    M draft-ietf-quic-tls.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3472 from quicwg/ianswett-noop-recovery-changelog=0D=

=0D
Add a changelog for http, qpack, tls, and recovery since -25=0D
=0D
=0D
  Commit: 8e5bbdf5e6d2a542e97a1ba54a57d5fbbcb78e19=0D
      https://github.com/quicwg/base-drafts/commit/8e5bbdf5e6d2a542e97a1b=
a54a57d5fbbcb78e19=0D
  Author: Mike Bishop <mbishop@evequefou.be>=0D
  Date:   2020-02-21 (Fri, 21 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-http.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Application-layer close (#3437)=0D
=0D
=0D
  Commit: c1b860491d2cb6ad1c45dacd02a521988654430e=0D
      https://github.com/quicwg/base-drafts/commit/c1b860491d2cb6ad1c45da=
cd02a521988654430e=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-02-22 (Sat, 22 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3169 from DavidSchinazi/varinttp=0D
=0D
Make transport parameters varint=0D
=0D
=0D
  Commit: dd3b8b0e62babfd1a647309d05d2c38f43d9fd27=0D
      https://github.com/quicwg/base-drafts/commit/dd3b8b0e62babfd1a64730=
9d05d2c38f43d9fd27=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-02-22 (Sat, 22 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-http.md=0D
    M draft-ietf-quic-qpack.md=0D
    M draft-ietf-quic-recovery.md=0D
    M draft-ietf-quic-tls.md=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Add changelogs for transport -26 and all -27=0D
=0D
=0D
  Commit: 794323875ce8dd4b408a96a88ea128e77c0999e9=0D
      https://github.com/quicwg/base-drafts/commit/794323875ce8dd4b408a96=
a88ea128e77c0999e9=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-02-22 (Sat, 22 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-tls.md=0D
    M protection-samples.js=0D
=0D
  Log Message:=0D
  -----------=0D
  Update examples for -27=0D
=0D
=0D
  Commit: b8779343f9b51d7d5435b5cd3e6d0bece516b329=0D
      https://github.com/quicwg/base-drafts/commit/b8779343f9b51d7d5435b5=
cd3e6d0bece516b329=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-02-22 (Sat, 22 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Remove tabs from recovery draft=0D
=0D
=0D
  Commit: 15612646cc9e36ade7043fc93c4114c0221712c7=0D
      https://github.com/quicwg/base-drafts/commit/15612646cc9e36ade7043f=
c93c4114c0221712c7=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-02-22 (Sat, 22 Feb 2020)=0D
=0D
  Changed paths:=0D
    M .lint.py=0D
=0D
  Log Message:=0D
  -----------=0D
  Lint HTAB=0D
=0D
I caught Ian adding these once, then failed to catch it a second time.=0D=

Fool me once...=0D
=0D
=0D
  Commit: 6e13a0be0d540146fa663effc0d00dc058b2ea7f=0D
      https://github.com/quicwg/base-drafts/commit/6e13a0be0d540146fa663e=
ffc0d00dc058b2ea7f=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-02-23 (Sun, 23 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3444 from quicwg/ianswett-idle-timeout-editorial=0D=

=0D
Idle timeout editorial fixes=0D
=0D
=0D
  Commit: 41b3967ae5fcfe974912139de243b0d91b595082=0D
      https://github.com/quicwg/base-drafts/commit/41b3967ae5fcfe97491213=
9de243b0d91b595082=0D
  Author: David Schinazi <dschinazi.ietf@gmail.com>=0D
  Date:   2020-02-22 (Sat, 22 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-tls.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Update reference to RFC8740=0D
=0D
=0D
  Commit: ea0cd3e665e5f6f1b5cbf05736a8c7c670a18844=0D
      https://github.com/quicwg/base-drafts/commit/ea0cd3e665e5f6f1b5cbf0=
5736a8c7c670a18844=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-02-23 (Sun, 23 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-tls.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3479 from DavidSchinazi/rfc8740=0D
=0D
Update reference to RFC8740=0D
=0D
=0D
  Commit: 96a64024ce8a2cbb5e9ab58de4180ed53166fc3a=0D
      https://github.com/quicwg/base-drafts/commit/96a64024ce8a2cbb5e9ab5=
8de4180ed53166fc3a=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-02-24 (Mon, 24 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Remove tabs from recovery draft=0D
=0D
=0D
  Commit: 69c2d95035420cc9bc596ed1d6a3373dfbe85548=0D
      https://github.com/quicwg/base-drafts/commit/69c2d95035420cc9bc596e=
d1d6a3373dfbe85548=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-02-24 (Mon, 24 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Transport parameters can be declared unilaterally=0D
=0D
The text already says this, but we lost track of it.  This hopefully=0D
clarifies that.=0D
=0D
Closes #3429.=0D
=0D
=0D
  Commit: e28286096182fa8b57a8607da90ce73144b3f105=0D
      https://github.com/quicwg/base-drafts/commit/e28286096182fa8b57a860=
7da90ce73144b3f105=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-02-24 (Mon, 24 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  ^^=0D
=0D
=0D
  Commit: d38e8c0f0d7376c66a1c0c64111177879321cb50=0D
      https://github.com/quicwg/base-drafts/commit/d38e8c0f0d7376c66a1c0c=
64111177879321cb50=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-02-24 (Mon, 24 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Scope connection IDs to the current connection=0D
=0D
This isn't strictly necessary, as it might be implied by the definition=0D=

of a connection ID.=0D
=0D
Closes #3484.=0D
=0D
=0D
  Commit: f9b64c275b366d0b745340da92d0ad019d48ce25=0D
      https://github.com/quicwg/base-drafts/commit/f9b64c275b366d0b745340=
da92d0ad019d48ce25=0D
  Author: Dmitri Tikhonov <dtikhonov@litespeedtech.com>=0D
  Date:   2020-02-24 (Mon, 24 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Fix typo in transport draft changelog=0D
=0D
=0D
  Commit: 2ce00d0f25b338bbc3a917805fb06d477edfacc1=0D
      https://github.com/quicwg/base-drafts/commit/2ce00d0f25b338bbc3a917=
805fb06d477edfacc1=0D
  Author: Bence B=C3=A9ky <bencebeky@users.noreply.github.com>=0D
  Date:   2020-02-25 (Tue, 25 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-qpack.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Improve language on evictable entries. (#3131)=0D
=0D
* Improve language on blocking entries.=0D
=0D
Remove "insertion has been acknowledged" phrase to avoid confusion=0D
between Header Acknowledgement instructions implicitly acknowledging=0D
encoder stream instructions and explicitly acknowledging header blocks.=0D=

Use Known Received Count instead.=0D
=0D
Clarify that references on the encoder stream do not block an entry from=0D=

eviction.  Trivial as it is, I overlooked this at first, and added quite=0D=

some unnecessary complexity that was eventually removed at=0D
https://quiche.googlesource.com/quiche/+/b09d44167c543b80b2c27408dd1f9df3=
b07c9741.=0D
My motivation here is to help future implementers to avoid this pitfall.=0D=

=0D
Merge redundant Reference Tracking section into Blocked Dynamic Table=0D
Insertions.=0D
=0D
Change style of "Note" at end of section for consistency.  There were=0D
already four sentences starting with "Note that" throughout the draft=0D
before this PR (now there are six), but no other "Note:" markdown.=0D
=0D
* Revert changing acknowledging insertion to comparing absolute index to =
Known Received Count.=0D
=0D
* Remove unnecessary wordcrafting to blocked-insertion first paragraph.=0D=

=0D
* wordsmithing=0D
=0D
* nit=0D
=0D
* Minor rewording=0D
=0D
=0D
  Commit: 9e0d7e7cd162c942e9a756f0dbf143f3ff311447=0D
      https://github.com/quicwg/base-drafts/commit/9e0d7e7cd162c942e9a756=
f0dbf143f3ff311447=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-02-25 (Tue, 25 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3481 from dtikhonov/202002241022-fix-transport-chan=
gelog-typo=0D
=0D
Fix typo in transport draft changelog=0D
=0D
=0D
  Commit: 86f72a783870cb18d6ad334d4edac1f08f7a1f79=0D
      https://github.com/quicwg/base-drafts/commit/86f72a783870cb18d6ad33=
4d4edac1f08f7a1f79=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-02-25 (Tue, 25 Feb 2020)=0D
=0D
  Changed paths:=0D
    M .lint.py=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3476 from quicwg/lint-tab=0D
=0D
Lint tabs=0D
=0D
=0D
  Commit: 4a202220895c6d2fb9d1cb81a2ecee6eab69cfb0=0D
      https://github.com/quicwg/base-drafts/commit/4a202220895c6d2fb9d1cb=
81a2ecee6eab69cfb0=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-02-25 (Tue, 25 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3478 from quicwg/unilateral-tp=0D
=0D
Unilateral Transport Parameters=0D
=0D
=0D
  Commit: 51fdf4251200fb0daf02d2014e6be72e4683f413=0D
      https://github.com/quicwg/base-drafts/commit/51fdf4251200fb0daf02d2=
014e6be72e4683f413=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-02-25 (Tue, 25 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3485 from quicwg/connection-scope-id=0D
=0D
Scope connection IDs to the current connection=0D
=0D
=0D
  Commit: d71905f1cccff82204ee98afb9c4532be3348541=0D
      https://github.com/quicwg/base-drafts/commit/d71905f1cccff82204ee98=
afb9c4532be3348541=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-02-25 (Tue, 25 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3462 from quicwg/ianswett-adaptive-loss=0D
=0D
Clarify adaptive loss thresholds=0D
=0D
=0D
  Commit: 6d5f3dab6470062bf3649872b3fe21498710dbf6=0D
      https://github.com/quicwg/base-drafts/commit/6d5f3dab6470062bf36498=
72b3fe21498710dbf6=0D
  Author: Dmitri Tikhonov <dtikhonov@litespeedtech.com>=0D
  Date:   2020-02-26 (Wed, 26 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-http.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Fix typo in HTTP draft (#3482)=0D
=0D
=0D
  Commit: bf46a9b1e6bc81dc0cda1ef84f4c0b440702b872=0D
      https://github.com/quicwg/base-drafts/commit/bf46a9b1e6bc81dc0cda1e=
f84f4c0b440702b872=0D
  Author: Loganaden Velvindron <logan@cyberstorm.mu>=0D
  Date:   2020-02-26 (Wed, 26 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-http.md=0D
=0D
  Log Message:=0D
  -----------=0D
  HTTP/3: Add RFC8446 reference for TLS 1.3. (#3483)=0D
=0D
* Add RFC8446 reference=0D
=0D
* Fix formatting reported by CircleCI=0D
=0D
* Fix trailing whitespaces=0D
=0D
* Use  symbolic references=0D
=0D
Co-Authored-By: Martin Thomson <mt@lowentropy.net>=0D
=0D
* Use symbolic reference for TFO=0D
=0D
Co-Authored-By: Martin Thomson <mt@lowentropy.net>=0D
=0D
* Fix line wrapping=0D
=0D
Co-authored-by: Martin Thomson <mt@lowentropy.net>=0D
=0D
=0D
  Commit: 55d617658fd32b95c54f27e75d1bab5739032537=0D
      https://github.com/quicwg/base-drafts/commit/55d617658fd32b95c54f27=
e75d1bab5739032537=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-02-26 (Wed, 26 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Jana's suggestions=0D
=0D
Co-Authored-By: Jana Iyengar <jri.ietf@gmail.com>=0D
=0D
=0D
  Commit: 9124ab1f5e462d386eec478e3813cfccec00148a=0D
      https://github.com/quicwg/base-drafts/commit/9124ab1f5e462d386eec47=
8e3813cfccec00148a=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-02-26 (Wed, 26 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Update draft-ietf-quic-transport.md=0D
=0D
=0D
  Commit: 0ce17f386f32e69c5e1abeaaddaccc273e4e110c=0D
      https://github.com/quicwg/base-drafts/commit/0ce17f386f32e69c5e1abe=
aaddaccc273e4e110c=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-02-26 (Wed, 26 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Update draft-ietf-quic-transport.md=0D
=0D
=0D
  Commit: 52649b9ecb3d4ddf3325e5db8891e7a2e6d95813=0D
      https://github.com/quicwg/base-drafts/commit/52649b9ecb3d4ddf3325e5=
db8891e7a2e6d95813=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-02-26 (Wed, 26 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Update draft-ietf-quic-transport.md=0D
=0D
=0D
  Commit: 1bc588fe9dc0227b2aeda8a6311f22ea7c2157a2=0D
      https://github.com/quicwg/base-drafts/commit/1bc588fe9dc0227b2aeda8=
a6311f22ea7c2157a2=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-02-26 (Wed, 26 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Update draft-ietf-quic-transport.md=0D
=0D
=0D
  Commit: 1a952f91d3f8d371e5fadfb2a56fb8c63ff6d5de=0D
      https://github.com/quicwg/base-drafts/commit/1a952f91d3f8d371e5fadf=
b2a56fb8c63ff6d5de=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-02-26 (Wed, 26 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Update draft-ietf-quic-transport.md=0D
=0D
=0D
  Commit: 1e60a825e535c3d1fddff7c3121b60a9bae1db40=0D
      https://github.com/quicwg/base-drafts/commit/1e60a825e535c3d1fddff7=
c3121b60a9bae1db40=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-02-26 (Wed, 26 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Update draft-ietf-quic-transport.md=0D
=0D
=0D
  Commit: b19b38b5fcb9e4c24fbdf95328fa7f6c726a5180=0D
      https://github.com/quicwg/base-drafts/commit/b19b38b5fcb9e4c24fbdf9=
5328fa7f6c726a5180=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-02-26 (Wed, 26 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Update draft-ietf-quic-transport.md=0D
=0D
=0D
  Commit: 47ba99c5eba017e53d1fd1b01cc8d6386cdffbd3=0D
      https://github.com/quicwg/base-drafts/commit/47ba99c5eba017e53d1fd1=
b01cc8d6386cdffbd3=0D
  Author: Martin Thomson <mt@lowentropy.net>=0D
  Date:   2020-02-26 (Wed, 26 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-transport.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3445 from quicwg/ianswett-why-send-handshake=0D
=0D
Clarify client anti-amplification response=0D
=0D
=0D
  Commit: 4fc37067f5cb3d62b59b3bd48fac75d5c09a4b36=0D
      https://github.com/quicwg/base-drafts/commit/4fc37067f5cb3d62b59b3b=
d48fac75d5c09a4b36=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-02-26 (Wed, 26 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  MT's comments and minimize text in the appendix=0D
=0D
=0D
  Commit: 0f2d4bff92a79bf4a385ff5992c7d6d403cbdd4f=0D
      https://github.com/quicwg/base-drafts/commit/0f2d4bff92a79bf4a385ff=
5992c7d6d403cbdd4f=0D
  Author: ianswett <ianswett@users.noreply.github.com>=0D
  Date:   2020-02-26 (Wed, 26 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Update draft-ietf-quic-recovery.md=0D
=0D
=0D
  Commit: 70b56f694d81348b1faabdb289050266cc46e9ba=0D
      https://github.com/quicwg/base-drafts/commit/70b56f694d81348b1faabd=
b289050266cc46e9ba=0D
  Author: Jana Iyengar <jri.ietf@gmail.com>=0D
  Date:   2020-02-27 (Thu, 27 Feb 2020)=0D
=0D
  Changed paths:=0D
    M draft-ietf-quic-recovery.md=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge pull request #3463 from quicwg/ianswett-cc-self-contained=0D
=0D
Make congestion control more self-contained=0D
=0D
=0D
  Commit: 40ed46141174740f8f9bb9aec5fef2b03594bab3=0D
      https://github.com/quicwg/base-drafts/commit/40ed46141174740f8f9bb9=
aec5fef2b03594bab3=0D
  Author: Jana Iyengar <jri.ietf@gmail.com>=0D
  Date:   2020-02-27 (Thu, 27 Feb 2020)=0D
=0D
  Changed paths:=0D
    M .lint.py=0D
    M draft-ietf-quic-http.md=0D
    M draft-ietf-quic-qpack.md=0D
    M draft-ietf-quic-recovery.md=0D
    M draft-ietf-quic-tls.md=0D
    M draft-ietf-quic-transport.md=0D
    M protection-samples.js=0D
=0D
  Log Message:=0D
  -----------=0D
  Merge branch 'master' into ianswett-send-one-packet=0D
=0D
=0D
Compare: https://github.com/quicwg/base-drafts/compare/d7fabb01733c...40e=
d46141174=0D

